Skip to content

Commit

Permalink
ci: drop Node 16
Browse files Browse the repository at this point in the history
BREAKING CHANGE:
Drop not supported Node js version 16
  • Loading branch information
anthony-redFox committed Sep 19, 2023
1 parent 1f092a5 commit 747c20a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
cache: npm
- run: npm ci
- run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
cache: npm
- run: npm ci
- run: npm run lint
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
cache: npm
- run: npm ci
- run: npm run build:check
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
node: [16, 18, 20]
node: [18, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
"karma-up": "./bin/karma-up"
},
"engines": {
"node": ">= 16"
"node": ">= 18"
},
"version": "6.4.2",
"license": "MIT",
Expand All @@ -112,6 +112,8 @@
"mocha": {
"reporter": "dot",
"ui": "bdd",
"require": ["test/unit/mocha-globals.js"]
"require": [
"test/unit/mocha-globals.js"
]
}
}

0 comments on commit 747c20a

Please sign in to comment.