Skip to content

Commit d1105ce

Browse files
committed
GitHub Actions: update node versions to be tested
1 parent 3fccce2 commit d1105ce

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/test-ci.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,19 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
arch: [amd64, ppc64le]
14-
node-version: ['10.x', 'lts/*', 'node']
13+
arch: [amd64]
14+
node-version: ['22.13', 'lts/*']
15+
include:
16+
- arch: ppc64le
17+
node-version: 20
1518
steps:
1619
- uses: actions/checkout@v4
1720
- uses: actions/setup-node@v4
1821
with:
1922
node-version: ${{ matrix.node-version }}
2023
- name: Run the test
2124
run: |
25+
echo "Running on ubuntu-latest-${{ matrix.arch }} with node version set as ${{ matrix.node-version }}"
2226
npm ci
2327
npx playwright install --with-deps
2428
npm test

0 commit comments

Comments
 (0)