Skip to content

Commit

Permalink
add support for node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
usu committed Jul 15, 2023
1 parent ce81f44 commit 4a3cbca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/continuous-integration.yml
Expand Up @@ -11,9 +11,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '16', '18' ]
node: ["16", "18", "20"]
steps:

- uses: actions/checkout@v2

- uses: actions/cache@v2
Expand Down Expand Up @@ -43,7 +42,6 @@ jobs:
name: "Linter"
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v2

- uses: actions/cache@v2
Expand All @@ -56,7 +54,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 16
node-version: 20

- run: npm ci

Expand All @@ -66,7 +64,6 @@ jobs:
name: "Build"
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v2

- uses: actions/cache@v2
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -14,7 +14,7 @@
"version": "npm run build"
},
"engines": {
"node": ">=14.0.0 <19.0.0"
"node": ">=16.0.0 <21.0.0"
},
"files": [
"/dist",
Expand Down Expand Up @@ -86,4 +86,4 @@
"webpack-cli": "4.9.2",
"webpack-node-externals": "3.0.0"
}
}
}

0 comments on commit 4a3cbca

Please sign in to comment.