Skip to content

Fix hydration issue with ResultCardCarousel #315

Fix hydration issue with ResultCardCarousel

Fix hydration issue with ResultCardCarousel #315

Workflow file for this run

name: E2E tests
on:
pull_request:
push:
branches:
- main
- develop
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup node
id: cache-node-modules
uses: actions/setup-node@v4
with:
node-version-file: ./frontend/.nvmrc
cache: "yarn"
cache-dependency-path: "**/yarn.lock"
- name: Install dependencies
run: yarn install --frozen-lockfile
working-directory: ./frontend
- name: Cypress run
uses: cypress-io/github-action@v6
with:
start: yarn dev
working-directory: ./frontend
- name: Archive results as artifacts
uses: actions/upload-artifact@v4
with:
name: cypress
path: |
/home/runner/work/Geotrek-rando-v3/Geotrek-rando-v3/frontend/cypress/videos/*.mp4
/home/runner/work/Geotrek-rando-v3/Geotrek-rando-v3/frontend/cypress/screenshots/*.png