chore: housekeeping and dependency updates #41
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |