Skip to content

Storybook Tests

Storybook Tests #49

Workflow file for this run

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@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "18.x"
- run: yarn
- run: yarn build
- run: yarn test
env:
TARGET_URL: "${{ github.event.deployment_status.target_url }}"