mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:21:23 +08:00
24 lines
631 B
Plaintext
24 lines
631 B
Plaintext
```yml
|
|
# .github/workflows/storybook-tests.yml
|
|
|
|
name: Storybook Tests
|
|
on: deployment_status
|
|
jobs:
|
|
test:
|
|
timeout-minutes: 60
|
|
runs-on: ubuntu-latest
|
|
if: github.event.deployment_status.state == 'success'
|
|
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: Run Storybook tests
|
|
run: yarn test-storybook
|
|
env:
|
|
TARGET_URL: '${{ github.event.deployment_status.target_url }}'
|
|
``` |