Skip to content

Commit

Permalink
chore: fix github action error
Browse files Browse the repository at this point in the history
  • Loading branch information
iosh committed Dec 8, 2024
1 parent 0f076c5 commit aa080b4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,13 @@ jobs:
with:
node-version: 20.x

- uses: pnpm/action-setup@v4
with:
version: 9

- name: Install Dependencies
run: pnpm

- name: Build
run: pnpm run build

Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/test-Windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,13 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

- name: Install pnpm
run: npm install pnpm -g
- uses: pnpm/action-setup@v4
with:
version: 9

- name: Install Dependencies
run: pnpm install

- name: Build
run: pnpm run build

Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/test-macOS.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,13 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

- name: Install pnpm
run: npm install pnpm -g
- uses: pnpm/action-setup@v4
with:
version: 9

- name: Install Dependencies
run: pnpm install

- name: Build
run: pnpm run build

Expand Down

0 comments on commit aa080b4

Please sign in to comment.