Skip to content

Commit

Permalink
try to fix turbo environment
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelQZQ committed Apr 26, 2024
1 parent c8916d9 commit d9f1a1c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ jobs:
- uses: pnpm/action-setup@v3
with:
version: 8

- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'

- run: pnpm i
- run: pnpm run all
env:
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,17 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8

- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'

- run: pnpm i
- name: Create Release Pull Request or Publish
id: changesets
Expand Down

0 comments on commit d9f1a1c

Please sign in to comment.