Use prod build for e2e tests (#432)

Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de>
This commit is contained in:
mrdrogdrog 2020-08-19 22:43:56 +02:00 committed by GitHub
parent 56957c9b43
commit 164b5436ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 105 additions and 12 deletions

View file

@ -7,7 +7,33 @@ on:
branches: [main]
jobs:
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
end2end:
needs: build-frontend
runs-on: ubuntu-latest
strategy:
matrix:
@ -15,7 +41,11 @@ jobs:
name: e2e:${{ matrix.browser }}
steps:
- uses: actions/checkout@v1
- uses: actions/download-artifact@master
with:
name: build
path: build
- uses: cypress-io/github-action@v2
with:
browser: ${{ matrix.browser }}
start: npm start
start: 'yarn build:serve'