mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-23 02:06:29 -05:00
f3bf7cd105
Signed-off-by: Philip Molares <philip.molares@udo.edu>
60 lines
1.4 KiB
YAML
60 lines
1.4 KiB
YAML
# SPDX-FileCopyrightText: 2020 The HedgeDoc developers (see AUTHORS file)
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
name: e2e
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
build-frontend:
|
|
runs-on: ubuntu-latest
|
|
name: build frontend
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Cache build
|
|
uses: actions/cache@v2.1.3
|
|
with:
|
|
path: build
|
|
key: build
|
|
- name: Cache node_modules
|
|
uses: actions/cache@v2.1.3
|
|
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:
|
|
browser: ['chrome', 'firefox']
|
|
name: e2e:${{ matrix.browser }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/download-artifact@master
|
|
with:
|
|
name: build
|
|
path: build
|
|
- uses: cypress-io/github-action@v2
|
|
with:
|
|
browser: ${{ matrix.browser }}
|
|
start: 'yarn build:serve'
|
|
- uses: actions/upload-artifact@master
|
|
if: always()
|
|
with:
|
|
name: screenshots
|
|
path: cypress/screenshots
|