Skip to content

Commit

Permalink
Merge pull request #76 from wadey/update-github-actions
Browse files Browse the repository at this point in the history
github actions: don't fail fast, update Node versions
  • Loading branch information
wadey authored Sep 8, 2023
2 parents c9c1b0c + 625fd68 commit affe144
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
name: Test
on: [push, pull_request]
on:
push:
branches:
- master
pull_request:

permissions:
contents: read
jobs:
Expand All @@ -21,9 +26,10 @@ jobs:
run: npm run lint-test
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [12, 14, 16]
node: [14, 16, 18, 19, 20]
arch: [x86, x64]
exclude:
- { os: ubuntu-latest, arch: x86 }
Expand Down

0 comments on commit affe144

Please sign in to comment.