Skip to content

Commit

Permalink
ci: ignore eslint on old node
Browse files Browse the repository at this point in the history
  • Loading branch information
yunnysunny committed May 3, 2022
1 parent 641c0ce commit 98f3b49
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 @@ -51,7 +51,12 @@ jobs:
HTTP2_TEST: ${{ matrix.test-http2 }}
OLD_NODE_TEST: ${{ matrix.test-on-old-node }}
run: |
npm run test
if [ "$OLD_NODE_TEST" = "1" ]; then
make test
else
npm run lint
make test
fi
- name: Coverage On Node ${{ matrix.node-version }}
run:
npm run coverage

0 comments on commit 98f3b49

Please sign in to comment.