v6
1name: zx@6 Test
2
3on:
4 push:
5 branches: [v6]
6 pull_request:
7 branches: [v6]
8
9jobs:
10 test:
11 runs-on: ubuntu-latest
12
13 strategy:
14 matrix:
15 node-version: [16, 18, 24]
16
17 steps:
18 - uses: actions/checkout@v3
19 - name: Use Node.js ${{ matrix.node-version }}
20 uses: actions/setup-node@v3
21 with:
22 node-version: ${{ matrix.node-version }}
23 - run: npm i
24 - run: npm test
25 timeout-minutes: 1
26 env:
27 FORCE_COLOR: 3