This repository was archived by the owner on Sep 24, 2024. It is now read-only.
Update all of babel7 7.20.12 → 7.25.2 (minor) #386
Workflow file for this run
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: Cypress | |
on: | |
push: | |
paths: ['!*.md'] | |
branches: [ develop ] | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Cypress E2E run | |
uses: cypress-io/github-action@v2 | |
with: | |
start: yarn storybook | |
wait-on: http://localhost:6006 | |
browser: chrome | |
headless: true | |
record: true | |
env: | |
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |