Skip to content

Commit

Permalink
node 16 is no longer supported
Browse files Browse the repository at this point in the history
  • Loading branch information
Janther committed Dec 23, 2024
1 parent a6aaf31 commit b676609
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18
cache: 'npm'
- name: Install
run: npm install
Expand All @@ -30,7 +30,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18
cache: 'npm'
- name: Install
run: npm install
Expand All @@ -48,7 +48,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18
cache: 'npm'
- name: Install
run: npm install
Expand All @@ -66,7 +66,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18, 20]
node: [18, 20, 22]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand All @@ -79,27 +79,27 @@ jobs:
run: npm run test:all

test_macos:
name: Test on MacOS with Node 16
name: Test on MacOS with Node 18
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18
cache: 'npm'
- name: Install
run: npm install
- name: Run tests
run: npm run test:all

test_windows:
name: Test on Windows with Node 16
name: Test on Windows with Node 18
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18
cache: 'npm'
- name: Install
run: npm install
Expand Down

0 comments on commit b676609

Please sign in to comment.