mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-25 11:16:31 -05:00
523f1d9105
Signed-off-by: Renovate Bot <bot@renovateapp.com>
82 lines
1.9 KiB
YAML
82 lines
1.9 KiB
YAML
# SPDX-FileCopyrightText: 2021 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 test build of frontend
|
|
steps:
|
|
- name: Check out repo
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Get yarn cache directory path
|
|
id: yarn-cache-dir-path
|
|
run: echo "::set-output name=dir::$(yarn cache dir)"
|
|
|
|
- name: Cache build
|
|
uses: actions/cache@v2.1.5
|
|
with:
|
|
path: build
|
|
key: build
|
|
|
|
- name: Cache node_modules
|
|
uses: actions/cache@v2
|
|
id: yarn-cache
|
|
with:
|
|
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
|
|
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-yarn-
|
|
|
|
- name: Set up NodeJS
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 14
|
|
|
|
- name: Install dependencies
|
|
run: yarn install --frozen-lockfile --prefer-offline
|
|
|
|
- name: Build test production build
|
|
run: yarn build:test
|
|
|
|
- uses: actions/upload-artifact@master
|
|
with:
|
|
name: build
|
|
path: build
|
|
|
|
end2end:
|
|
name: Perform E2E Test in ${{ matrix.browser }}
|
|
needs: build-frontend
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
browser: [ 'chrome', 'firefox' ]
|
|
steps:
|
|
- name: Check out repo
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Download built frontend
|
|
uses: actions/download-artifact@master
|
|
with:
|
|
name: build
|
|
path: build
|
|
|
|
- uses: cypress-io/github-action@v2
|
|
with:
|
|
browser: ${{ matrix.browser }}
|
|
start: 'yarn serve:build'
|
|
|
|
- uses: actions/upload-artifact@master
|
|
if: always()
|
|
with:
|
|
name: screenshots
|
|
path: cypress/screenshots
|