Update port of interlis-check-service #142
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: Cypress Tests | |
on: [push] | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
containers: [1] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Start db and api's | |
run: docker compose up --wait stac-browser db interlis-check-service geopilot | |
- name: Cypress run | |
uses: cypress-io/github-action@v6 | |
with: | |
command: npx cypress run --record --parallel --key ${{ secrets.CYPRESS_RECORD_KEY }} --ci-build-id ${{ github.repository }}-${{ github.run_id }}-${{ github.run_attempt}} | |
wait-on: "http://localhost:5173" | |
wait-on-timeout: 120 | |
working-directory: ./src/Geopilot.Frontend | |
env: | |
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |