Skip to content

chore(deps-dev): bump @playwright/test from 1.45.0 to 1.45.1 #1913

chore(deps-dev): bump @playwright/test from 1.45.0 to 1.45.1

chore(deps-dev): bump @playwright/test from 1.45.0 to 1.45.1 #1913

Workflow file for this run

name: End-to-end browser-based tests
on:
push:
env:
CI: true
jobs:
e2e-browser:
runs-on: ubuntu-latest
environment:
name: ${{ matrix.environment-name }}
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: true
matrix:
environment-name: ["ESS PodSpaces", "ESS Dev-2-2"]
experimental: [false]
include:
- environment-name: "ESS Dev-2-3"
experimental: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
- run: npm ci
- run: npm run build
- run: npx playwright install --with-deps
- run: npm run test:e2e:browser:setup
- # Dependabot cannot access secrets, so it doesn't have a token to authenticate to ESS.
# We want jobs in this workflow to be gating PRs, so the whole matrix must
# run even for dependabot so that the matrixed jobs are skipped, instead
# of the whole pipeline.
if: ${{ github.actor != 'dependabot[bot]' }}
run: npm run test:e2e:browser
env:
E2E_TEST_IDP: ${{ secrets.E2E_TEST_IDP }}
E2E_TEST_ENVIRONMENT: ${{ matrix.environment-name }}
E2E_TEST_USER: ${{ secrets.E2E_TEST_USER }}
E2E_TEST_VC_PROVIDER: ${{ secrets.E2E_TEST_VC_PROVIDER }}
E2E_TEST_PASSWORD: ${{ secrets.E2E_TEST_PASSWORD }}
- name: Archive browser-based end-to-end test request logs
uses: actions/upload-artifact@v4
if: failure()
continue-on-error: true
with:
name: playwright-output
path: test-results/
- name: Archive production artifacts
uses: actions/upload-artifact@v4
continue-on-error: true
with:
name: dist
path: dist