Skip to content

Commit 4c93c7f

Browse files
authored
upchud
1 parent 12d7676 commit 4c93c7f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/pnpm-build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
jobs:
1010
build:
1111
runs-on: ubuntu-latest
12+
1213
steps:
1314
- name: Checkout code
1415
uses: actions/checkout@v4
@@ -17,14 +18,13 @@ jobs:
1718
uses: actions/setup-node@v3
1819
with:
1920
node-version: 20
21+
cache: "pnpm"
2022

2123
- name: Install pnpm
22-
run: |
23-
npm install -g pnpm
24-
echo "$(npm bin -g)" >> $GITHUB_PATH
24+
run: npm install -g pnpm
2525

2626
- name: Install dependencies
2727
run: pnpm install
2828

29-
- name: Run build
30-
run: pnpm build
29+
- name: Build all packages and sites
30+
run: pnpm turbo run build

0 commit comments

Comments
 (0)