Skip to content

Commit 7a6e4d1

Browse files
authored
Removed Node v18 from CI (#49)
ref https://github.com/nodejs/release#release-schedule - Node v18 is EOL as of today. We no longer need to support it. - Today we will drop the build from CI, so we won't be aware of bugs introduced - We will drop Node v18 from the supported versions in the engines flags sometime later, likely in our next major bump, as this is quite disruptive and abrupt for people self hosting
1 parent 0ae9e71 commit 7a6e4d1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/lint-only.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
if: github.event_name == 'push' || (github.event_name == 'pull_request' && !startsWith(github.head_ref, 'renovate/'))
88
strategy:
99
matrix:
10-
node: [ 18, 20, 22 ]
10+
node: [ 20, 22 ]
1111
env:
1212
FORCE_COLOR: 1
1313
name: Node ${{ matrix.node }}

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
if: github.event_name == 'push' || (github.event_name == 'pull_request' && !startsWith(github.head_ref, 'renovate/'))
1111
strategy:
1212
matrix:
13-
node: [ 18, 20, 22 ]
13+
node: [ 20, 22 ]
1414
env:
1515
FORCE_COLOR: 1
1616
name: Node ${{ matrix.node }}

0 commit comments

Comments
 (0)