Skip to content

Commit

Permalink
ci: Fix linting step
Browse files Browse the repository at this point in the history
  • Loading branch information
nzakas committed Mar 25, 2022
1 parent ea49c4d commit 84f3ed3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,12 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: '16.x'

- name: Install Packages
run: npm install

- name: Lint Files
run: node Makefile lint
run: npm run lint

test:
name: Test
Expand All @@ -33,10 +35,13 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2

- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}

- name: Install Packages
run: npm install

- name: Test
run: npm test

0 comments on commit 84f3ed3

Please sign in to comment.