Files
mermaid-live-editor/.github/workflows/cypress.yml
T
2021-05-24 19:50:43 +05:30

21 lines
463 B
YAML

name: Cypress Tests
on: [push]
jobs:
cypress-run:
runs-on: ubuntu-latest
container: cypress/browsers:node12.18.3-chrome87-ff82
steps:
- name: Checkout
uses: actions/checkout@v2
# Install NPM dependencies, cache them correctly
# and run all Cypress tests
- name: Cypress run
uses: cypress-io/github-action@v2
with:
browser: chrome
build: yarn build
start: yarn preview