Skip to content

Commit 379c547

Browse files
committed
ci: Run on pull requests, and up to node v17
A lot of mistakes I made in recent PRs could have been avoided with this.
1 parent 67ad8a4 commit 379c547

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/nodejs.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
name: Node CI
2-
on: [push]
2+
on: [push, pull_request]
33

44
jobs:
55
build:
66
runs-on: ubuntu-latest
77

88
strategy:
99
matrix:
10-
node-version: [4.x, 6.x, 8.x, 10.x, 12.x]
10+
node-version: [4.x, 6.x, 8.x, 10.x, 12.x, 14.x, 16.x, 17.x]
11+
fail-fast: false
1112

1213
steps:
1314
- uses: actions/checkout@v1

0 commit comments

Comments
 (0)