mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 23:16:59 +00:00
20 lines
379 B
YAML
20 lines
379 B
YAML
name: E2E on Chrome
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
install:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Cypress run
|
|
uses: cypress-io/github-action@v3
|
|
with:
|
|
project: ./site
|
|
browser: chrome
|
|
build: yarn build
|
|
start: yarn start
|
|
wait-on: 'http://localhost:3000'
|