Skip to content

Commit 70c6934

Browse files
committed
Use Vite Plus commands in CI
1 parent 4246bc0 commit 70c6934

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ jobs:
2424
run: vp install --frozen-lockfile
2525

2626
- name: Build
27-
run: pnpm run build
27+
run: vp run --filter "./packages/*" build
2828

2929
- name: Static checks
3030
run: vp check
3131

3232
- name: TypeScript comparison
33-
run: pnpm run typecheck
33+
run: vp run --filter "./packages/*" typecheck
3434

3535
- name: Test
36-
run: pnpm run test
36+
run: vp run --filter "./packages/*" test
3737

3838
release:
3939
needs: [build]
@@ -58,6 +58,9 @@ jobs:
5858
- name: Install dependencies
5959
run: vp install --frozen-lockfile
6060

61+
- name: Enable pnpm for publishing
62+
run: corepack enable pnpm
63+
6164
- name: Release
6265
id: changesets
6366
uses: changesets/action@v1

0 commit comments

Comments
 (0)