Skip to content

Commit fb75a07

Browse files
committed
replace npm with PNPM in the unit test workflow
1 parent abe5c7a commit fb75a07

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/unit-test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,12 @@ jobs:
1919
with:
2020
node-version: '20.x'
2121

22+
- name: Install PNPM
23+
run: npm install -g pnpm@9
24+
timeout-minutes: 5
25+
2226
- name: Install Dependencies
23-
run: npm ci
27+
run: pnpm install --frozen-lockfile
2428
timeout-minutes: 5
2529

2630
- name: Run Unit Tests

0 commit comments

Comments
 (0)