Skip to content

Commit 84f3ed3

Browse files
committed
ci: Fix linting step
1 parent ea49c4d commit 84f3ed3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@ jobs:
1414
- uses: actions/setup-node@v2
1515
with:
1616
node-version: '16.x'
17+
1718
- name: Install Packages
1819
run: npm install
20+
1921
- name: Lint Files
20-
run: node Makefile lint
22+
run: npm run lint
2123

2224
test:
2325
name: Test
@@ -33,10 +35,13 @@ jobs:
3335
runs-on: ${{ matrix.os }}
3436
steps:
3537
- uses: actions/checkout@v2
38+
3639
- uses: actions/setup-node@v2
3740
with:
3841
node-version: ${{ matrix.node }}
42+
3943
- name: Install Packages
4044
run: npm install
45+
4146
- name: Test
4247
run: npm test

0 commit comments

Comments
 (0)