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 5b76900 commit e5b8c99Copy full SHA for e5b8c99
.github/workflows/test.yml
@@ -14,21 +14,23 @@ jobs:
14
- name: Setup Node.js
15
uses: actions/setup-node@v4
16
17
+ - name: Install dependencies
18
+ run: yarn install
19
+
20
- name: Build coverage addon
21
run: |
- yarn install
22
yarn build
23
24
- name: Run tests in webpack example
25
26
+ yarn install --immutable false
27
npx playwright install --with-deps
28
yarn test-storybook:ci-coverage
29
working-directory: examples/webpack5
30
31
- name: Run tests in vite example
32
33
34
35
36
working-directory: examples/vite
0 commit comments