Skip to content

CI E2E

CI E2E #11829

Workflow file for this run

name: CI E2E
on:
workflow_dispatch:
schedule:
- cron: "0 1 * * *"
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true
jobs:
main:
name: Cypress
runs-on: ubuntu-20.04
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
strategy:
fail-fast: false # https://github.com/cypress-io/github-action/issues/48
matrix:
containers: [1, 2, 3, 4, 5, 6, 7, 8]
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- name: Setup Playground
run: docker-compose -f docker-compose.yml up -d
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
with:
node-version: 16
cache: "npm"
- run: npm ci
- run: .github/workflows/ci/wait-for http://localhost:3001/_actuator/probes/liveness -t 240
- run: .github/workflows/ci/wait-for http://localhost:3002/_actuator/probes/liveness -t 240
- run: .github/workflows/ci/wait-for http://localhost:19551/ping -t 240
- uses: cypress-io/github-action@d79d2d530a66e641eb4a5f227e13bc985c60b964 # v4.2.2
with:
config-file: cypress.config.js
install: false
record: true
parallel: true
start: npm run start:web
wait-on: "http://localhost:19000"
browser: chrome
spec: mobile-app/cypress/e2e/**
tag: ${{ github.event_name }}
project: ./mobile-app
env:
CYPRESS_E2E: true
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4