feat(analytics): add the extra claims that were verified to analytics #2771
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, workflow_call] | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
tests-cypress: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Start app | |
run: | | |
cp .env.sample .env | |
docker compose up --detach server | |
docker compose run --detach --service-ports client bin/test_start.sh | |
- name: Run Cypress tests | |
uses: cypress-io/github-action@v6 | |
env: | |
CYPRESS_baseUrl: http://localhost:8000 | |
with: | |
command: npm test | |
working-directory: tests/cypress | |
wait-on: http://localhost:8000/healthcheck | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: cypress-screenshots | |
path: tests/cypress/screenshots |