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 d0e14c8 commit 99ba284Copy full SHA for 99ba284
.github/workflows/pr.yml
@@ -65,13 +65,13 @@ jobs:
65
node-version: 22
66
cache: "npm"
67
- name: Install dependencies
68
- run: yarn
+ run: npm ci
69
- name: Install Playwright
70
run: npx playwright install --with-deps
71
- name: Build Storybook
72
- run: yarn build-storybook --quiet
+ run: npm run build:storybook --quiet
73
- name: Serve Storybook and run tests
74
run: |
75
npx concurrently -k -s first -n "SB,TEST" -c "magenta,blue" \
76
"npx http-server storybook-static --port 6006 --silent" \
77
- "npx wait-on tcp:127.0.0.1:6006 && yarn test-storybook"
+ "npx wait-on tcp:127.0.0.1:6006 && npm run test-storybook:ci"
0 commit comments