Skip to content

Commit b425cd9

Browse files
Add main workflow run all test spec files
1 parent 3477e4f commit b425cd9

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/main.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: E2E on Chrome
2+
3+
on: [push]
4+
5+
jobs:
6+
install:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v2
11+
12+
- name: Cypress run
13+
uses: cypress-io/github-action@v3
14+
with:
15+
project: ./site
16+
browser: chrome
17+
build: yarn build
18+
start: yarn start
19+
wait-on: "http://localhost:3000"

0 commit comments

Comments
 (0)