Skip to content

add cypress workflow #6

add cypress workflow

add cypress workflow #6

Workflow file for this run

name: Cypress
on: push
jobs:
cypress-run:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
# Install NPM dependencies, cache them correctly
# and run all Cypress tests
- name: Install formule dependencies
run: yarn install --frozen-lockfile
- name: Install formule-demo dependencies
working-directory: "./formule-demo"
run: yarn install --frozen-lockfile
- name: Cypress run
uses: cypress-io/github-action@v6
with:
install: false
start: yarn dev