Skip to content

chore: housekeeping and dependency updates #41

chore: housekeeping and dependency updates

chore: housekeeping and dependency updates #41

Workflow file for this run

name: End-to-end tests
on:
pull_request:
branches:
- main
jobs:
cypress-run:
name: "Test stories with cypress"
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
cache: "yarn"
- run: yarn install --immutable
- name: Cypress run
uses: cypress-io/github-action@v2
with:
build: yarn build:storybook
start: yarn start:storybook
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}