use caffeine in CachedStore and adapt ManagedInternalForm for state p… #3945
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "End-To-End Tests" | |
on: | |
push: | |
branches: | |
# Always run on protected branches | |
- master | |
- develop | |
- release | |
pull_request: | |
paths: | |
- "**" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
env: | |
# Set electron language to german so request use "accept-language: de" header | |
ELECTRON_EXTRA_LAUNCH_ARGS: --lang=de | |
timeout-minutes: 10 | |
steps: | |
- name: Cache local Maven repository | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
overwrite-settings: false | |
- name: Build Backend | |
run: ./scripts/build_backend_no_version.sh | |
- name: Build Frontend | |
run: ./scripts/build_frontend.sh | |
- name: Cypress run | |
# This is a preconfigured action, maintained by cypress, to run e2e tests | |
# https://github.com/cypress-io/github-action | |
uses: cypress-io/github-action@v6 | |
with: | |
working-directory: . | |
start: bash ./scripts/run_e2e_all.sh | |
wait-on: "http://localhost:8000" | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: cypress-screenshots | |
path: cypress/screenshots | |
if-no-files-found: ignore | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: cypress-videos | |
path: cypress/videos | |
if-no-files-found: ignore |