Skip to content

Commit

Permalink
adding lint job to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
catdad committed Feb 14, 2023
1 parent 14de223 commit f343ee1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,17 @@ jobs:
- name: npm test
run: npx xvfb-maybe npm test

lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 16
- run: npm install
- run: node --version
- run: npm run lint

publish:
runs-on: ubuntu-latest
needs: [test]
Expand Down

0 comments on commit f343ee1

Please sign in to comment.