Skip to content

Commit

Permalink
feat: rework test to work on macos with node 10,12 and 14
Browse files Browse the repository at this point in the history
  • Loading branch information
hauserkristof committed Aug 22, 2024
1 parent 293fd9e commit 1406ea3
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 13,24 @@ jobs:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [10, 12, 14, 16, 17]
exclude:
- os: macos-latest
node-version: 10
- os: macos-latest
node-version: 12
- os: macos-latest
node-version: 14
include:
- os: macos-13
node-version: 10
- os: macos-13
node-version: 12
- os: macos-13
node-version: 14

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
Expand Down

0 comments on commit 1406ea3

Please sign in to comment.