Skip to content

Commit

Permalink
build(deps-dev): don't run lint on node 10
Browse files Browse the repository at this point in the history
- eslint doesn't support node10 anymore
  • Loading branch information
lukashroch committed Feb 11, 2022
1 parent a0dcf0e commit 0d0b499
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
node-version: ${{ matrix.node-version }}

- run: 'npm ci'
- run: 'npm run lint'
- name: Lint
if: ${{ matrix.node-version != '10.x' }}
run: 'npm run lint'
- run: 'npm run markdownlint'
- run: 'npm run build'
- run: 'DISABLE_LOGGING=1 npm run cover'
Expand Down

0 comments on commit 0d0b499

Please sign in to comment.