Skip to content

Commit

Permalink
Add linting step to the Github actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed Jun 13, 2022
1 parent 07239a7 commit 302603b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,16 @@ jobs:
- run: npm run test
env:
CI: true

lint:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 16.x
- run: npm ci
- run: npm run lint
env:
CI: true

0 comments on commit 302603b

Please sign in to comment.