We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4246bc0 commit 70c6934Copy full SHA for 70c6934
1 file changed
.github/workflows/main.yml
@@ -24,16 +24,16 @@ jobs:
24
run: vp install --frozen-lockfile
25
26
- name: Build
27
- run: pnpm run build
+ run: vp run --filter "./packages/*" build
28
29
- name: Static checks
30
run: vp check
31
32
- name: TypeScript comparison
33
- run: pnpm run typecheck
+ run: vp run --filter "./packages/*" typecheck
34
35
- name: Test
36
- run: pnpm run test
+ run: vp run --filter "./packages/*" test
37
38
release:
39
needs: [build]
@@ -58,6 +58,9 @@ jobs:
58
- name: Install dependencies
59
60
61
+ - name: Enable pnpm for publishing
62
+ run: corepack enable pnpm
63
+
64
- name: Release
65
id: changesets
66
uses: changesets/action@v1
0 commit comments