Skip to content

Commit affe144

Browse files
authored
Merge pull request #76 from wadey/update-github-actions
github actions: don't fail fast, update Node versions
2 parents c9c1b0c + 625fd68 commit affe144

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
name: Test
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request:
7+
38
permissions:
49
contents: read
510
jobs:
@@ -21,9 +26,10 @@ jobs:
2126
run: npm run lint-test
2227
test:
2328
strategy:
29+
fail-fast: false
2430
matrix:
2531
os: [ubuntu-latest, macos-latest, windows-latest]
26-
node: [12, 14, 16]
32+
node: [14, 16, 18, 19, 20]
2733
arch: [x86, x64]
2834
exclude:
2935
- { os: ubuntu-latest, arch: x86 }

0 commit comments

Comments
 (0)