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 361adc0 commit ca961e0Copy full SHA for ca961e0
.github/workflows/ci.yml
@@ -68,11 +68,12 @@ jobs:
68
- name: Build the package
69
run: pnpm install && pnpm build && pnpm snapshot
70
- run: echo "{}" > playground/package.json
71
+ - run: mv playground playground-tmp
72
- name: Install dependencies in playground
- run: pnpm -C ./playground install --no-frozen-lockfile
73
+ run: pnpm -C ./playground-tmp install --no-frozen-lockfile
74
75
- name: Run build script in playground
- run: pnpm -C ./playground --filter "*" build
76
+ run: pnpm -C ./playground-tmp --filter "*" build
77
78
# test-vitest:
79
# needs: build
0 commit comments