2021-01-06 15:37:59 -05:00
|
|
|
# SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
2020-11-22 15:50:07 -05:00
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-07-16 05:22:53 -04:00
|
|
|
name: e2e
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-06-17 15:18:52 -04:00
|
|
|
branches: [ main ]
|
2020-07-16 05:22:53 -04:00
|
|
|
pull_request:
|
2021-06-17 15:18:52 -04:00
|
|
|
branches: [ main ]
|
2020-07-16 05:22:53 -04:00
|
|
|
|
|
|
|
jobs:
|
2021-04-11 16:34:53 -04:00
|
|
|
build-frontend:
|
2020-08-19 16:43:56 -04:00
|
|
|
runs-on: ubuntu-latest
|
2021-04-11 16:34:53 -04:00
|
|
|
name: Build test build of frontend
|
2020-08-19 16:43:56 -04:00
|
|
|
steps:
|
2021-01-06 07:09:33 -05:00
|
|
|
- name: Check out repo
|
2022-03-05 10:27:37 -05:00
|
|
|
uses: actions/checkout@v3
|
2020-11-29 04:07:44 -05:00
|
|
|
|
2021-04-11 16:34:53 -04:00
|
|
|
- name: Cache build
|
2021-11-26 19:09:15 -05:00
|
|
|
uses: actions/cache@v2.1.7
|
2021-06-21 16:59:21 -04:00
|
|
|
id: build-cache
|
2021-04-11 16:34:53 -04:00
|
|
|
with:
|
2021-12-25 10:44:24 -05:00
|
|
|
path: .next
|
2021-06-21 16:59:21 -04:00
|
|
|
key: build-${{ github.sha }}
|
2021-04-11 16:34:53 -04:00
|
|
|
|
2021-06-13 17:02:39 -04:00
|
|
|
- name: Get yarn cache directory path
|
|
|
|
id: yarn-cache-dir-path
|
2021-06-21 16:59:21 -04:00
|
|
|
if: steps.build-cache.outputs.cache-hit != 'true'
|
2021-12-30 12:45:04 -05:00
|
|
|
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
|
2021-06-13 17:02:39 -04:00
|
|
|
|
2021-06-21 16:58:54 -04:00
|
|
|
- name: Cache yarn cache
|
2020-11-29 04:07:44 -05:00
|
|
|
uses: actions/cache@v2
|
|
|
|
id: yarn-cache
|
2021-06-21 16:59:21 -04:00
|
|
|
if: steps.build-cache.outputs.cache-hit != 'true'
|
2020-08-19 16:43:56 -04:00
|
|
|
with:
|
2020-11-29 04:07:44 -05:00
|
|
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
2021-05-24 15:01:16 -04:00
|
|
|
key: ${{ runner.os }}-16-yarn-${{ hashFiles('**/yarn.lock') }}
|
2020-11-29 04:07:44 -05:00
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-yarn-
|
|
|
|
|
|
|
|
- name: Set up NodeJS
|
2021-06-21 16:59:21 -04:00
|
|
|
if: steps.build-cache.outputs.cache-hit != 'true'
|
2022-02-25 19:36:32 -05:00
|
|
|
uses: actions/setup-node@v3
|
2020-08-19 16:43:56 -04:00
|
|
|
with:
|
2021-05-24 15:01:16 -04:00
|
|
|
node-version: 16
|
2020-11-29 04:07:44 -05:00
|
|
|
|
2021-01-06 07:09:33 -05:00
|
|
|
- name: Install dependencies
|
2021-06-21 16:59:21 -04:00
|
|
|
if: steps.build-cache.outputs.cache-hit != 'true'
|
2021-12-30 12:45:04 -05:00
|
|
|
run: yarn install --immutable
|
2020-08-19 16:43:56 -04:00
|
|
|
|
2021-01-06 07:09:33 -05:00
|
|
|
- name: Build test production build
|
2021-06-21 16:59:21 -04:00
|
|
|
if: steps.build-cache.outputs.cache-hit != 'true'
|
2021-01-06 07:09:33 -05:00
|
|
|
run: yarn build:test
|
|
|
|
|
2021-04-11 16:34:53 -04:00
|
|
|
- uses: actions/upload-artifact@master
|
|
|
|
with:
|
2021-12-25 10:44:24 -05:00
|
|
|
name: next-build
|
2022-01-01 15:43:06 -05:00
|
|
|
path: |
|
|
|
|
.next
|
|
|
|
!.next/cache
|
2021-01-06 07:09:33 -05:00
|
|
|
|
2021-04-11 16:34:53 -04:00
|
|
|
end2end:
|
|
|
|
name: Perform E2E Test in ${{ matrix.browser }}
|
|
|
|
needs: build-frontend
|
|
|
|
runs-on: ubuntu-latest
|
2021-06-13 17:02:39 -04:00
|
|
|
container:
|
2021-10-16 06:10:13 -04:00
|
|
|
# renovate: datasource=docker depName=cypress/browsers versioning=docker
|
2022-02-12 16:56:27 -05:00
|
|
|
image: cypress/browsers:node16.13.2-chrome97-ff96
|
2021-06-13 17:02:39 -04:00
|
|
|
options: --user 1001 --shm-size=2g
|
2021-04-11 16:34:53 -04:00
|
|
|
strategy:
|
2021-06-17 15:18:52 -04:00
|
|
|
fail-fast: false
|
2021-04-11 16:34:53 -04:00
|
|
|
matrix:
|
|
|
|
browser: [ 'chrome', 'firefox' ]
|
2022-01-03 06:08:46 -05:00
|
|
|
containers: [ 1, 2, 3, 4, 5 ]
|
2021-04-11 16:34:53 -04:00
|
|
|
steps:
|
|
|
|
- name: Check out repo
|
2022-03-05 10:27:37 -05:00
|
|
|
uses: actions/checkout@v3
|
2021-01-11 15:55:25 -05:00
|
|
|
|
2021-04-11 16:34:53 -04:00
|
|
|
- name: Download built frontend
|
|
|
|
uses: actions/download-artifact@master
|
2020-08-19 16:43:56 -04:00
|
|
|
with:
|
2021-12-25 10:44:24 -05:00
|
|
|
name: next-build
|
|
|
|
path: .next
|
2021-01-06 07:09:33 -05:00
|
|
|
|
2021-04-11 16:34:53 -04:00
|
|
|
- uses: cypress-io/github-action@v2
|
2020-07-16 05:22:53 -04:00
|
|
|
with:
|
2021-04-11 16:34:53 -04:00
|
|
|
browser: ${{ matrix.browser }}
|
2021-12-25 10:44:24 -05:00
|
|
|
start: 'yarn start:ci'
|
2021-06-17 15:18:52 -04:00
|
|
|
parallel: true
|
|
|
|
record: true
|
|
|
|
group: "UI - ${{ matrix.browser }}"
|
|
|
|
wait-on: 'http://127.0.0.1:3001/'
|
|
|
|
wait-on-timeout: 120
|
2022-01-02 03:53:48 -05:00
|
|
|
install-command: yarn install --immutable --silent
|
2021-06-17 15:18:52 -04:00
|
|
|
env:
|
|
|
|
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2021-01-06 07:09:33 -05:00
|
|
|
|
2021-04-11 16:34:53 -04:00
|
|
|
- uses: actions/upload-artifact@master
|
|
|
|
if: always()
|
2020-11-15 14:07:02 -05:00
|
|
|
with:
|
2021-04-11 16:34:53 -04:00
|
|
|
name: screenshots
|
|
|
|
path: cypress/screenshots
|