Bump typescript from 5.6.3 to 5.7.3 in /cameras-gui in the types group #1007
Workflow file for this run
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: HC e2e-healthy-cameras | |
on: push | |
jobs: | |
e2e-electron: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'adopt' | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Start Docker | |
uses: nick-fields/retry@v3 | |
with: | |
max_attempts: 3 | |
retry_on: error | |
timeout_seconds: 2400 | |
command: | | |
make dcup-full-isolated-action | |
- name: Docker Startup Fail! | |
if: failure() | |
run: | | |
make docker-logs | |
- name: Run Cypress | |
run: make cypress-electron | |
- name: Cypress Fail! | |
if: failure() | |
run: | | |
make docker-logs | |
e2e-chrome: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'adopt' | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Start Docker | |
uses: nick-fields/retry@v3 | |
with: | |
max_attempts: 3 | |
retry_on: error | |
timeout_seconds: 2400 | |
command: | | |
make dcup-full-isolated-action | |
- name: Docker Startup Fail! | |
if: failure() | |
run: | | |
make docker-logs | |
- name: Run Cypress | |
run: make cypress-chrome | |
- name: Cypress Fail! | |
if: failure() | |
run: | | |
make docker-logs | |
e2e-firefox: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'adopt' | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Start Docker | |
uses: nick-fields/retry@v3 | |
with: | |
max_attempts: 3 | |
retry_on: error | |
timeout_seconds: 2400 | |
command: | | |
make dcup-full-isolated-action | |
- name: Docker Startup Fail! | |
if: failure() | |
run: | | |
make docker-logs | |
- name: Run Cypress | |
run: make cypress-firefox | |
- name: Cypress Fail! | |
if: failure() | |
run: | | |
make docker-logs | |
e2e-edge: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'adopt' | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Start Docker | |
uses: nick-fields/retry@v3 | |
with: | |
max_attempts: 3 | |
retry_on: error | |
timeout_seconds: 2400 | |
command: | | |
make dcup-full-isolated-action | |
- name: Docker Startup Fail! | |
if: failure() | |
run: | | |
make docker-logs | |
- name: Run Cypress | |
run: make cypress-edge | |
- name: Cypress Fail! | |
if: failure() | |
run: | | |
make docker-logs |