Accepts Automated PRs on Sun Dec 22 09:11:19 CET 2024 #438
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: YFJE e2e-your-finance-je | |
on: push | |
jobs: | |
e2e-electron: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: maven | |
- name: Start Docker | |
run: make dcup-full-action | |
- name: Run Cypress | |
run: make cypress-electron | |
e2e-chrome: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: maven | |
- name: Start Docker | |
run: make dcup-full-action | |
- name: Run Cypress | |
run: make cypress-chrome | |
e2e-firefox: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: maven | |
- name: Start Docker | |
run: make dcup-full-action | |
- name: Run Cypress | |
run: make cypress-firefox | |
e2e-edge: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: maven | |
- name: Start Docker | |
run: make dcup-full-action | |
- name: Run Cypress | |
run: make cypress-edge |