mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-28 05:54:43 -04:00
Use prod build for e2e tests (#432)
Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de>
This commit is contained in:
parent
56957c9b43
commit
164b5436ae
4 changed files with 105 additions and 12 deletions
32
.github/workflows/e2e.yml
vendored
32
.github/workflows/e2e.yml
vendored
|
@ -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'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue