Skip to content

Commit 714851c

Browse files
authored
test: Add Node 20 to CI matrix (#1069)
1 parent b27300e commit 714851c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
- i18n_extract
1414
- lint
1515
- test
16+
node: [18, 20]
17+
continue-on-error: ${{ matrix.node == 20 }}
1618
steps:
1719
- uses: actions/checkout@v4
18-
- name: Setup Nodejs Env
19-
run: echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV
2020
- uses: actions/setup-node@v4
2121
with:
22-
node-version: ${{ env.NODE_VER }}
22+
node-version: ${{ matrix.node }}
2323
- run: make requirements
2424
- run: make test NPM_TESTS=build
2525
- run: make test NPM_TESTS=${{ matrix.npm-test }}

0 commit comments

Comments
 (0)