Skip to content

Commit 2f48e9c

Browse files
committed
Try to fix CI
1 parent 85991e3 commit 2f48e9c

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/test.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ jobs:
3333
node-version:
3434
- 16
3535
- 14
36-
- 12
3736
name: Node.js ${{ matrix.node-version }} Quick
3837
steps:
3938
- name: Checkout the repository
@@ -55,7 +54,12 @@ jobs:
5554
FORCE_COLOR: 2
5655
old:
5756
runs-on: ubuntu-latest
58-
name: Node.js 10 Quick
57+
strategy:
58+
matrix:
59+
node-version:
60+
- 12
61+
- 10
62+
name: Node.js ${{ matrix.node-version }} Quick
5963
steps:
6064
- name: Checkout the repository
6165
uses: actions/checkout@v3
@@ -65,10 +69,10 @@ jobs:
6569
version: 3
6670
env:
6771
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
68-
- name: Install Node.js 10
72+
- name: Install Node.js ${{ matrix.node-version }}
6973
uses: actions/setup-node@v3
7074
with:
71-
node-version: 10
75+
node-version: ${{ matrix.node-version }}
7276
- name: Install dependencies
7377
run: pnpm install --frozen-lockfile --ignore-scripts
7478
- name: Run unit tests

0 commit comments

Comments
 (0)