Skip to content

Commit ca26f70

Browse files
committed
update ci
1 parent 10368f6 commit ca26f70

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/base.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ jobs:
2121
with:
2222
node-version: '22.x'
2323

24-
- name: Setup pnpm
25-
uses: pnpm/action-setup@v4
26-
2724
- name: Cache node_modules
2825
uses: actions/cache/restore@v4
2926
with:

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,22 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- uses: actions/checkout@v4
22+
2223
- name: Setup Node.js
2324
uses: actions/setup-node@v4
2425
with:
2526
node-version: '22.x'
27+
28+
- name: Setup pnpm
29+
uses: pnpm/action-setup@v4
30+
2631
- uses: actions/cache@v4
2732
with:
2833
path: dist/
2934
key: ${{ runner.os }}-build-${{ hashFiles('**/pnpm-lock.yaml') }}
3035
restore-keys: |
3136
${{ runner.os }}-build-
37+
3238
- run: pnpm install --frozen-lockfile --prefer-offline
3339

3440
build:

0 commit comments

Comments
 (0)