Skip to content

Commit d48170f

Browse files
committed
Added Node 20 to CI matrix
ref https://linear.app/tryghost/issue/ENG-765/add-support-for-node-20 - Node 20 is LTS so we should add support for it and test against this version
1 parent d879936 commit d48170f

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

0 commit comments

Comments
 (0)