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 acc98cd commit 92429f1Copy full SHA for 92429f1
.github/workflows/test.yml
@@ -27,12 +27,14 @@ jobs:
27
with:
28
node-version: ${{ matrix.node-version }}
29
cache: 'pnpm'
30
- - name: Install dependencies
31
- run: pnpm install -r --offline
+ - name: Install dependencies for packages
+ run: pnpm install --filter "./packages/**"
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/**"
38
- name: Compile examples
39
run: pnpm -r build-check
40
- name: Run tests
0 commit comments