Skip to content

Commit 35b909d

Browse files
committed
build(deps-dev): don't run lint on node 10
- eslint doesn't support node10 anymore
1 parent a0dcf0e commit 35b909d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/nodejs.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ jobs:
2525
node-version: ${{ matrix.node-version }}
2626

2727
- run: 'npm ci'
28-
- run: 'npm run lint'
28+
- name: Lint
29+
if: ${{ matrix.node-version != '10.x' }
30+
run: 'npm run lint'
2931
- run: 'npm run markdownlint'
3032
- run: 'npm run build'
3133
- run: 'DISABLE_LOGGING=1 npm run cover'

0 commit comments

Comments
 (0)