Skip to content

Commit 7bb8744

Browse files
committed
chore: streamline CI workflow by removing redundant PNPM installation step
1 parent 1f2b4a5 commit 7bb8744

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ jobs:
2121
- name: Checkout repository
2222
uses: actions/checkout@v3
2323

24+
- name: Install pnpm
25+
uses: pnpm/action-setup@v2
26+
with:
27+
version: 8
28+
2429
- name: Setup Node.js and cache PNPM dependencies
2530
uses: actions/setup-node@v3
2631
with:
2732
node-version: "20.8"
2833
cache: pnpm
2934

30-
- name: Install PNPM
31-
uses: pnpm/action-setup@v2
32-
with:
33-
version: 8
34-
3535
- name: Install Dependencies
3636
run: pnpm install
3737
env:

0 commit comments

Comments
 (0)