fix(deps): update dependency @happy-dom/global-registrator to v15.11.6 #1856
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: E2E | |
on: | |
push: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow}}-${{ github.ref }} | |
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
env: | |
APP_URL: "http://localhost:3000" | |
DATABASE_URL: postgresql://postgres:postgres@localhost:5432/postgres?schema=public | |
DO_NOT_TRACK: 1 | |
TURBO_TEAM: ${{ vars.TURBO_TEAM }} | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
jobs: | |
e2e: | |
name: End to end testing | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
run_install: false | |
- uses: actions/setup-node@v4 | |
with: | |
cache: pnpm | |
node-version-file: package.json | |
- run: docker compose up --build --detach | |
- name: "🔺️ Cache" | |
uses: ./.github/actions/cache | |
with: | |
name: e2e | |
- run: pnpm install --frozen-lockfile --prefer-offline | |
- name: Install dependencies | |
uses: cypress-io/github-action@f1f0912d392f0d06bdd01fb9ebe3b3299e5806fb # v6.7.7 | |
with: | |
runTests: false | |
- run: pnpm run build | |
- run: docker compose up --wait | |
- run: pnpm --filter @1.infra/database exec prisma migrate deploy | |
- run: pnpm exec turbo run build | |
- name: Cypress run | |
uses: cypress-io/github-action@f1f0912d392f0d06bdd01fb9ebe3b3299e5806fb # v6.7.7 | |
env: | |
CONSOLA_LEVEL: "2" | |
DEPLOY_ENV: "production" | |
NODE_ENV: "development" | |
with: | |
install: false | |
start: pnpm start | |
working-directory: apps/e2e | |
spec: features/${{ matrix.e2e_test }} | |
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
if: failure() | |
with: | |
compression-level: 9 | |
name: cypress-screenshots-${{ github.run_number }} | |
path: apps/e2e/cypress/screenshots | |
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 | |
if: failure() | |
with: | |
compression-level: 9 | |
name: cypress-videos-${{ github.run_number }} | |
path: apps/e2e/cypress/videos | |
- if: failure() | |
run: docker compose logs | |
- if: always() | |
run: docker compose down --volumes --remove-orphans | |
strategy: | |
matrix: | |
e2e_test: | |
- auth | |
- exchanges | |
- forum | |
- legal | |
- moderation | |
- opportunity | |
- partner | |
- status | |
- studient | |
- studient_inbox | |
- who | |
system: | |
name: System testing | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: pnpm | |
node-version-file: package.json | |
- name: "🔺️ Cache" | |
uses: ./.github/actions/cache | |
with: | |
name: system | |
- run: pnpm --filter=!e2e install --frozen-lockfile --prefer-offline | |
- run: pnpm exec turbo build --filter api... | |
- name: Install bun | |
uses: oven-sh/setup-bun@4bc047ad259df6fc24a6c9b0f9a0cb08cf17fbe5 # v2 | |
- run: pnpm test |