Fix inline styles for CodeBlock component (2444) by @laurakwhit (Attempt 1) #4012
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: Playwright | |
run-name: ${{github.event.pull_request.title}} (${{ github.event.pull_request.number }}) by @${{ github.triggering_actor }} (Attempt ${{ github.run_attempt }}) | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main, 'codefreeze-*'] | |
paths-ignore: | |
- '**.md' | |
- 'LICENSE' | |
- 'CODEOWNERS' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
integration-tests: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Checkout and Setup Node | |
uses: ./.github/actions/checkout-and-setup | |
- name: Install Playwright Browsers | |
run: pnpm exec playwright install --with-deps | |
- name: Run Integration tests | |
run: pnpm test:integration | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: playwright-report-integration | |
path: | | |
./playwright-report/ | |
./test-results/ | |
retention-days: 30 | |
e2e-tests: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Checkout and Setup Node | |
uses: ./.github/actions/checkout-and-setup | |
- name: Build UI | |
run: pnpm build:server | |
- uses: actions/setup-go@v3 | |
with: | |
go-version-file: server/go.mod | |
cache-dependency-path: server/go.sum | |
cache: true | |
check-latest: true | |
- name: Set up Protoc | |
uses: arduino/setup-protoc@v1 | |
with: | |
version: '3.x' | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build UI Server | |
working-directory: server | |
run: make build | |
- name: Install Playwright Browsers | |
run: pnpm exec playwright install --with-deps | |
- name: Run E2E tests | |
run: pnpm test:e2e | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: playwright-report-e2e | |
path: | | |
./playwright-report/ | |
./test-results/ | |
retention-days: 30 |