Skip to content

upgrade-interactive #170

upgrade-interactive

upgrade-interactive #170

Workflow file for this run

name: Cypress
on: [push]
permissions:
contents: read
jobs:
cypress:
name: cypress
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Cypress run on chrome
uses: cypress-io/github-action@v2
with:
start: yarn start
browser: chrome
headless: true
spec: cypress/e2e/start_screen_spec.cy.ts,cypress/e2e/input_data_spec.cy.ts
config-file: cypress.config.ts
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn install --immutable --immutable-cache --check-cache
- run: yarn build