Skip to content

Commit 25694f1

Browse files
committed
Added support for Node 22
fix https://linear.app/ghost/issue/ENG-2012/add-node-22-support-to-actions - we're adding support for Node 22 so we need to add it to the list of versions we execute against in CI
1 parent 9e4e334 commit 25694f1

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 ]
10+
node: [ 18, 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 ]
13+
node: [ 18, 20, 22 ]
1414
env:
1515
FORCE_COLOR: 1
1616
name: Node ${{ matrix.node }}

0 commit comments

Comments
 (0)