Skip to content

chore(test): Storybook test integration #2

chore(test): Storybook test integration

chore(test): Storybook test integration #2

Workflow file for this run

name: Run storybook tests
on:
schedule:
- cron: "* 4 * * *"
workflow_dispatch:
pull_request:
jobs:
run-tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [20]
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
# necessary for git diff of changed files in the PR
with:
fetch-depth: 2
- name: Setup node env 🏗
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
check-latest: true
- name: Cache node_modules 📦
uses: actions/[email protected]
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies 👨🏻‍💻
run: npm ci --prefer-offline --no-audit
- name: Run e2e tests 👀
run: npm run test:storybook
- name: Upload failed test screenshots 📷
uses: actions/upload-artifact@v4
if: failure()
with:
name: cypress-screenshots
path: cypress/screenshots