2020-07-16 05:22:53 -04:00
|
|
|
name: e2e
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2020-08-15 10:17:06 -04:00
|
|
|
branches: [main]
|
2020-07-16 05:22:53 -04:00
|
|
|
pull_request:
|
2020-08-15 10:17:06 -04:00
|
|
|
branches: [main]
|
2020-07-16 05:22:53 -04:00
|
|
|
|
|
|
|
jobs:
|
2020-08-19 16:43:56 -04:00
|
|
|
build-frontend:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
name: build frontend
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Cache build
|
|
|
|
uses: actions/cache@v1.1.0
|
|
|
|
with:
|
|
|
|
path: build
|
|
|
|
key: build
|
|
|
|
- name: Cache node_modules
|
|
|
|
uses: actions/cache@v1.1.0
|
|
|
|
with:
|
|
|
|
path: node_modules
|
|
|
|
key: node_modules
|
|
|
|
- uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: '14'
|
|
|
|
- run: yarn install
|
|
|
|
- run: yarn build
|
|
|
|
- uses: actions/upload-artifact@master
|
|
|
|
with:
|
|
|
|
name: build
|
|
|
|
path: build
|
|
|
|
|
2020-07-16 05:22:53 -04:00
|
|
|
end2end:
|
2020-08-19 16:43:56 -04:00
|
|
|
needs: build-frontend
|
2020-07-16 05:22:53 -04:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-07-18 16:37:14 -04:00
|
|
|
browser: ['chrome', 'firefox']
|
2020-07-25 07:59:56 -04:00
|
|
|
name: e2e:${{ matrix.browser }}
|
2020-07-16 05:22:53 -04:00
|
|
|
steps:
|
2020-07-25 07:59:56 -04:00
|
|
|
- uses: actions/checkout@v1
|
2020-08-19 16:43:56 -04:00
|
|
|
- uses: actions/download-artifact@master
|
|
|
|
with:
|
|
|
|
name: build
|
|
|
|
path: build
|
2020-07-25 07:59:56 -04:00
|
|
|
- uses: cypress-io/github-action@v2
|
2020-07-16 05:22:53 -04:00
|
|
|
with:
|
2020-07-25 07:59:56 -04:00
|
|
|
browser: ${{ matrix.browser }}
|
2020-08-19 16:43:56 -04:00
|
|
|
start: 'yarn build:serve'
|