2020-11-22 15:50:07 -05:00
|
|
|
# SPDX-FileCopyrightText: 2020 The HedgeDoc developers (see AUTHORS file)
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
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:
|
2020-10-25 05:45:22 -04:00
|
|
|
- uses: actions/checkout@v2
|
2020-08-19 16:43:56 -04:00
|
|
|
- name: Cache build
|
2020-11-06 19:36:26 -05:00
|
|
|
uses: actions/cache@v2.1.3
|
2020-08-19 16:43:56 -04:00
|
|
|
with:
|
|
|
|
path: build
|
|
|
|
key: build
|
|
|
|
- name: Cache node_modules
|
2020-11-06 19:36:26 -05:00
|
|
|
uses: actions/cache@v2.1.3
|
2020-08-19 16:43:56 -04:00
|
|
|
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-10-25 05:45:22 -04:00
|
|
|
- uses: actions/checkout@v2
|
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'
|
2020-11-15 14:07:02 -05:00
|
|
|
- uses: actions/upload-artifact@master
|
2020-11-17 05:04:29 -05:00
|
|
|
if: always()
|
2020-11-15 14:07:02 -05:00
|
|
|
with:
|
|
|
|
name: screenshots
|
|
|
|
path: cypress/screenshots
|