We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fccce2 commit d1105ceCopy full SHA for d1105ce
.github/workflows/test-ci.yml
@@ -10,15 +10,19 @@ jobs:
10
runs-on: ubuntu-latest
11
strategy:
12
matrix:
13
- arch: [amd64, ppc64le]
14
- node-version: ['10.x', 'lts/*', 'node']
+ arch: [amd64]
+ node-version: ['22.13', 'lts/*']
15
+ include:
16
+ - arch: ppc64le
17
+ node-version: 20
18
steps:
19
- uses: actions/checkout@v4
20
- uses: actions/setup-node@v4
21
with:
22
node-version: ${{ matrix.node-version }}
23
- name: Run the test
24
run: |
25
+ echo "Running on ubuntu-latest-${{ matrix.arch }} with node version set as ${{ matrix.node-version }}"
26
npm ci
27
npx playwright install --with-deps
28
npm test
0 commit comments