mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:31:06 +08:00
26 lines
740 B
Plaintext
26 lines
740 B
Plaintext
```yml
|
|
# .github/workflows/storybook-tests.yml
|
|
|
|
name: 'Storybook Tests'
|
|
on: push
|
|
jobs:
|
|
test:
|
|
timeout-minutes: 60
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '14.x'
|
|
- name: Install dependencies
|
|
run: yarn
|
|
- name: Install Playwright
|
|
run: npx playwright install --with-deps
|
|
- name: Build Storybook
|
|
run: yarn build-storybook --quiet
|
|
- name: Serve Storybook and run tests
|
|
run: |
|
|
npx concurrently -k -s first -n "SB,TEST" -c "magenta,blue" \
|
|
"npx http-server storybook-static --port 6006 --silent" \
|
|
"npx wait-on tcp:6006 && yarn test-storybook"
|
|
``` |