This repository has been archived by the owner on Dec 14, 2023. It is now read-only.
chore(deps-dev): bump prettier from 3.1.0 to 3.1.1 #699
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: End-to-end browser-based tests | |
on: | |
push: | |
env: | |
CI: true | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: 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"] | |
experimental: [false] | |
include: | |
- environment-name: "ESS Dev-Next" | |
experimental: true | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20.x | |
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. | |
# Since all the other jobs of this workflow depend on this one, skipping it should | |
# skip the entire workflow. | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
run: npm run test:e2e:browser | |
- name: Archive browser-based end-to-end test request logs | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
continue-on-error: true | |
with: | |
name: playwright-output | |
path: test-results/ |