Skip to content

Commit 2cb635b

Browse files
committed
removing support for node 18
1 parent 5c10efe commit 2cb635b

File tree

3 files changed

+54
-47
lines changed

3 files changed

+54
-47
lines changed

.github/workflows/CI.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
submodules: true
1919
- uses: actions/setup-node@v3
2020
with:
21-
node-version: 18
21+
node-version: 20
2222
cache: 'npm'
2323
- name: Install
2424
run: npm install
@@ -34,7 +34,7 @@ jobs:
3434
submodules: true
3535
- uses: actions/setup-node@v3
3636
with:
37-
node-version: 18
37+
node-version: 20
3838
cache: 'npm'
3939
- name: Install
4040
run: npm install
@@ -52,7 +52,7 @@ jobs:
5252
runs-on: ubuntu-latest
5353
strategy:
5454
matrix:
55-
node: [18, 20, 22]
55+
node: [20, 22, 24]
5656
steps:
5757
- uses: actions/checkout@v3
5858
with:
@@ -67,31 +67,31 @@ jobs:
6767
run: npm run test:node
6868

6969
test_macos:
70-
name: Test on MacOS with Node 18
70+
name: Test on MacOS with Node 20
7171
runs-on: macos-latest
7272
steps:
7373
- uses: actions/checkout@v3
7474
with:
7575
submodules: true
7676
- uses: actions/setup-node@v3
7777
with:
78-
node-version: 18
78+
node-version: 20
7979
cache: 'npm'
8080
- name: Install
8181
run: npm install
8282
- name: Run tests
8383
run: npm run test:node
8484

8585
test_windows:
86-
name: Test on Windows with Node 18
86+
name: Test on Windows with Node 20
8787
runs-on: windows-latest
8888
steps:
8989
- uses: actions/checkout@v3
9090
with:
9191
submodules: true
9292
- uses: actions/setup-node@v3
9393
with:
94-
node-version: 18
94+
node-version: 20
9595
cache: 'npm'
9696
- name: Install
9797
run: npm install

package-lock.json

Lines changed: 46 additions & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"karma": "^6.4.4",
5858
"karma-chrome-launcher": "^3.2.0",
5959
"karma-mocha": "^2.0.1",
60-
"mocha": "^11.1.0",
60+
"mocha": "^11.7.0",
6161
"nyc": "^17.1.0",
6262
"prettier": "^3.5.3",
6363
"puppeteer": "^24.10.2",

0 commit comments

Comments
 (0)