Skip to content

Commit b3a6546

Browse files
committed
ci: stop testing against NodeJS v18
1 parent 5b2d28b commit b3a6546

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ jobs:
5252
fail-fast: false
5353
matrix:
5454
node_version:
55-
- 18
56-
- 20
55+
- 20.17
5756
- 22
57+
- 24
5858
steps:
5959
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
6060
- name: Use Node.js ${{ matrix.node_version }}
@@ -74,6 +74,8 @@ jobs:
7474
- browser
7575
steps:
7676
- run: exit 1
77-
if: ${{ needs.lint.result != 'success' || needs.node.result != 'success' || needs.browser.result != 'success' || needs.deno.result != 'success' }}
77+
if:
78+
${{ needs.lint.result != 'success' || needs.node.result != 'success' ||
79+
needs.browser.result != 'success' || needs.deno.result != 'success' }}
7880
- run: echo ok
7981
if: ${{ always() }}

0 commit comments

Comments
 (0)