Skip to content

Commit 1a6757c

Browse files
committed
Run old Node.js with old pnpm
1 parent 664f3b9 commit 1a6757c

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,18 +55,23 @@ jobs:
5555
run: pnpm unit
5656
old:
5757
runs-on: ubuntu-latest
58-
name: Node.js 14 Quick
58+
strategy:
59+
matrix:
60+
node-version:
61+
- 16
62+
- 14
63+
name: Node.js ${{ matrix.node-version }} Quick
5964
steps:
6065
- name: Checkout the repository
6166
uses: actions/checkout@v4
6267
- name: Install pnpm
6368
uses: pnpm/action-setup@v2
6469
with:
6570
version: 7
66-
- name: Install Node.js 14
71+
- name: Install Node.js ${{ matrix.node-version }}
6772
uses: actions/setup-node@v3
6873
with:
69-
node-version: 14
74+
node-version: ${{ matrix.node-version }}
7075
cache: pnpm
7176
- name: Install dependencies
7277
run: pnpm install --no-frozen-lockfile --ignore-scripts

0 commit comments

Comments
 (0)