Skip to content

Commit 338dac7

Browse files
committed
bump
1 parent 92665f1 commit 338dac7

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/actions/setup/action.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ runs:
1111
node-version: 20
1212
cache: 'pnpm'
1313

14-
- name: Install pnpm
15-
shell: bash
16-
run: npm install -g pnpm
17-
1814
- uses: actions/cache@v4
1915
id: pnpm-cache
2016
with:

.github/workflows/test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- uses: ./.github/actions/setup
1515

16+
- name: Install pnpm
17+
run: npm install -g pnpm
18+
1619
- name: Test with Coverage
1720
run: pnpm run coverage
1821

@@ -30,11 +33,14 @@ jobs:
3033
- uses: actions/checkout@v4
3134
- uses: ./.github/actions/setup
3235

36+
- name: Install pnpm
37+
run: npm install -g pnpm
38+
3339
- name: Build Dist
3440
run: pnpm build
3541

3642
- name: Bundlewatch
3743
run: npx bundlewatch
3844

3945
- name: Build Docs
40-
run: npm run build:docs
46+
run: pnpm run build:docs

0 commit comments

Comments
 (0)