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 3f9f322 commit a239bf2Copy full SHA for a239bf2
.github/workflows/test.yml
@@ -28,13 +28,13 @@ jobs:
28
node-version: ${{ matrix.node-version }}
29
cache: 'pnpm'
30
- name: Install dependencies for packages
31
- run: pnpm install --filter "./packages/**" --frozen-lockfile
+ run: pnpm install --filter "./packages/**" --recursive=false
32
- name: Build all packages
33
run: pnpm build
34
- name: Run linter
35
run: pnpm lint
36
- name: Install dependencies for examples
37
- run: pnpm install --filter "./examples/**" --frozen-lockfile
+ run: pnpm install --filter "./examples/**" --recursive=false
38
- name: Compile examples
39
run: pnpm -r build-check
40
- name: Run tests
0 commit comments