Skip to content

Commit 4a3cbca

Browse files
committed
add support for node 20
1 parent ce81f44 commit 4a3cbca

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
node: [ '16', '18' ]
14+
node: ["16", "18", "20"]
1515
steps:
16-
1716
- uses: actions/checkout@v2
1817

1918
- uses: actions/cache@v2
@@ -43,7 +42,6 @@ jobs:
4342
name: "Linter"
4443
runs-on: ubuntu-latest
4544
steps:
46-
4745
- uses: actions/checkout@v2
4846

4947
- uses: actions/cache@v2
@@ -56,7 +54,7 @@ jobs:
5654
- name: Setup node
5755
uses: actions/setup-node@v2
5856
with:
59-
node-version: 16
57+
node-version: 20
6058

6159
- run: npm ci
6260

@@ -66,7 +64,6 @@ jobs:
6664
name: "Build"
6765
runs-on: ubuntu-latest
6866
steps:
69-
7067
- uses: actions/checkout@v2
7168

7269
- uses: actions/cache@v2

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"version": "npm run build"
1515
},
1616
"engines": {
17-
"node": ">=14.0.0 <19.0.0"
17+
"node": ">=16.0.0 <21.0.0"
1818
},
1919
"files": [
2020
"/dist",
@@ -86,4 +86,4 @@
8686
"webpack-cli": "4.9.2",
8787
"webpack-node-externals": "3.0.0"
8888
}
89-
}
89+
}

0 commit comments

Comments
 (0)