datahub/.github/workflows/examples-catalog-cypress.yml
Rufus Pollock 590f77926f [ci][s]: rename and fix up github workflow main.yml (it is for examples/catalog).
Follow up to 337d4a81866834e8d9ff9e3029e6d8c662bfb902.
2021-03-08 19:53:17 +01:00

18 lines
416 B
YAML

name: Cypress Integration Tests
on: [push]
jobs:
cypress-run:
runs-on: ubuntu-16.04
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Cypress run
uses: cypress-io/github-action@v2
with:
working-directory: examples/catalog
browser: chrome
build: yarn run build
start: yarn start
wait-on: "http://localhost:3000"