mirror of
https://github.com/brianlovin/security-checklist.git
synced 2026-03-11 08:55:31 +00:00
22 lines
465 B
YAML
22 lines
465 B
YAML
name: E2E on Chrome
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
cypress-run:
|
|
runs-on: ubuntu-latest
|
|
# let's make sure our tests pass on Chrome browser
|
|
name: E2E on Chrome
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Cypress run
|
|
uses: cypress-io/github-action@v2
|
|
with:
|
|
build: yarn run build
|
|
start: yarn run start
|
|
browser: chrome
|