We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a7345d commit 00dd570Copy full SHA for 00dd570
.github/workflows/pull_request.yml
@@ -23,13 +23,13 @@ jobs:
23
24
- name: Lint code
25
run: |
26
- ./node_modules/.bin/tsc --noEmit
27
- ./node_modules/.bin/eslint .
+ node_modules/.bin/tsc --noEmit
+ node_modules/.bin/eslint .
28
29
- name: Lint commits
30
if: github.event_name == 'pull_request'
31
32
- ./node_modules/.bin/commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose
+ node_modules/.bin/commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose
33
34
notify_success:
35
runs-on: ubuntu-latest
0 commit comments