Skip to content

Commit

Permalink
Update CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
alcuadrado committed Apr 1, 2024
1 parent a9512a9 commit 2f62a48
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ on:

jobs:
test_on_windows:
name: Test Ignition on Windows with Node 16
name: Test Ignition on Windows with Node 18
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18
cache: npm
- name: Install
run: npm install
Expand All @@ -27,13 +27,13 @@ jobs:
run: npm run test:examples

test_on_macos:
name: Test Ignition on MacOS with Node 16
name: Test Ignition on MacOS with Node 18
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18
cache: npm
- name: Install
run: npm install
Expand All @@ -49,7 +49,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18, 20.5]
node: [18, 20.5]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
Expand All @@ -72,7 +72,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
node-version: 18
cache: npm
- name: Install
run: npm install
Expand Down

0 comments on commit 2f62a48

Please sign in to comment.