Merge pull request #207 from jesperancinha/dependabot/npm_and_yarn/e2… #643
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: VSA e2e-video-series-app | |
on: push | |
jobs: | |
e2e-electron: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 19 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '19' | |
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@v3 | |
- name: Set up JDK 19 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '19' | |
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@v3 | |
- name: Set up JDK 19 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '19' | |
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@v3 | |
- name: Set up JDK 19 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '19' | |
distribution: 'adopt' | |
cache: maven | |
- name: Start Docker | |
run: make dcup-full-action | |
- name: Run Cypress | |
run: make cypress-edge |