Skip to content

Commit 00dd570

Browse files
committed
ci(lint): call of linting via bin
1 parent 0a7345d commit 00dd570

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pull_request.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ jobs:
2323

2424
- name: Lint code
2525
run: |
26-
./node_modules/.bin/tsc --noEmit
27-
./node_modules/.bin/eslint .
26+
node_modules/.bin/tsc --noEmit
27+
node_modules/.bin/eslint .
2828
2929
- name: Lint commits
3030
if: github.event_name == 'pull_request'
3131
run: |
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
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
3333
3434
notify_success:
3535
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)