Skip to content

Automate SDK bump PRs, and fix the CODEOWNERS and CDN updater bugs #303

Automate SDK bump PRs, and fix the CODEOWNERS and CDN updater bugs

Automate SDK bump PRs, and fix the CODEOWNERS and CDN updater bugs #303

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: lts/*
- name: Install dependencies
run: npm install && npm run install-dependencies
- name: Install Playwright Browsers
run: npm exec playwright install chromium --with-deps
- name: Run Playwright tests
run: npm run e2e-tests
- uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30