We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 664f3b9 commit 1a6757cCopy full SHA for 1a6757c
1 file changed
.github/workflows/test.yml
@@ -55,18 +55,23 @@ jobs:
55
run: pnpm unit
56
old:
57
runs-on: ubuntu-latest
58
- name: Node.js 14 Quick
+ strategy:
59
+ matrix:
60
+ node-version:
61
+ - 16
62
+ - 14
63
+ name: Node.js ${{ matrix.node-version }} Quick
64
steps:
65
- name: Checkout the repository
66
uses: actions/checkout@v4
67
- name: Install pnpm
68
uses: pnpm/action-setup@v2
69
with:
70
version: 7
- - name: Install Node.js 14
71
+ - name: Install Node.js ${{ matrix.node-version }}
72
uses: actions/setup-node@v3
73
- node-version: 14
74
+ node-version: ${{ matrix.node-version }}
75
cache: pnpm
76
- name: Install dependencies
77
run: pnpm install --no-frozen-lockfile --ignore-scripts
0 commit comments