Skip to content

Commit b6ceb29

Browse files
committed
chore: drop node 20
1 parent 61384b5 commit b6ceb29

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

should-skip-test-suites.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const nodeMajorVersion = process.versions.node.split('.').map(x => parseInt(x, 10))[0]
2-
const shouldRunSuites = nodeMajorVersion >= 20
2+
const shouldRunSuites = nodeMajorVersion >= 22
33
if (!shouldRunSuites) {
44
console.info(`Skipped templates test suites on node ${nodeMajorVersion}`)
55
process.exit(0)

templates/plugin/.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
contents: read
1010
strategy:
1111
matrix:
12-
node-version: [20, 22, 24]
12+
node-version: [22, 24]
1313
os: [macos-latest, ubuntu-latest, windows-latest]
1414
steps:
1515
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)