Skip to content

Commit 55701d2

Browse files
ci: stop testing against NodeJS v14, v16 (#257)
* build(package): set minimal node version in engines field to v18 BREAKING CHANGE: Drop support for NodeJS v14, v16 * ci: stop testing against NodeJS v14, v16 * ci: stop testing against NodeJS v14, v16 * ci: stop testing against NodeJS v14, v16 * ci: stop testing against NodeJS v14, v16 * ci: stop testing against NodeJS v14, v16 * fix: update templates to use Node 18, 20 * build(test.yml): set node-version to 18 * style: run prettier --------- Co-authored-by: Keegan Campbell <[email protected]>
1 parent 8d8c46a commit 55701d2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v3
1515
- uses: actions/setup-node@v3
1616
with:
17-
node-version: 16
17+
node-version: 18
1818
cache: npm
1919
- name: Install
2020
run: npm ci

lib/create-test-action.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
strategy:
2020
matrix:
21-
node_version: ["14", "16", "18"]
21+
node_version: ["18", "20"]
2222
2323
steps:
2424
- uses: actions/checkout@v3

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@
3737
]
3838
},
3939
"engines": {
40-
"node": ">= 14"
40+
"node": ">= 18"
4141
}
4242
}

0 commit comments

Comments
 (0)