Bump eslint-config-next from 15.0.1 to 15.0.2 (#2541) #4403
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: End-to-end Tests (Browser) | |
on: | |
push: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
e2e-browser: | |
# Ensure we timeout reasonably quickly: | |
timeout-minutes: 30 | |
runs-on: ${{ matrix.os }} | |
environment: | |
name: ${{ matrix.environment-name }} | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
matrix: | |
# Available OS's: https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners | |
os: [ubuntu-latest, windows-latest] | |
environment-name: ["ESS PodSpaces", "ESS Dev-2-2"] | |
experimental: [false] | |
include: | |
- environment-name: "ESS Dev-2-3" | |
experimental: true | |
os: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
cache: "npm" | |
cache-dependency-path: "**/package-lock.json" | |
# install | |
- run: npm ci --ignore-scripts | |
- run: npx playwright install --with-deps | |
# build | |
- run: npm run build | |
# setup | |
- run: npm run test:e2e:browser:build | |
# test | |
- # 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_ENVIRONMENT: ${{ matrix.environment-name }} | |
E2E_TEST_POD: ${{ secrets.E2E_TEST_POD }} | |
E2E_TEST_IDP: ${{ secrets.E2E_TEST_IDP }} | |
E2E_TEST_USER: ${{ secrets.E2E_TEST_USER }} | |
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/ |