Skip to content

Sync OUIA IDs

Sync OUIA IDs #34

Workflow file for this run

name: Smoke
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: smoke-${{ github.ref }}
cancel-in-progress: true
jobs:
smoke:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v6
with:
node-version: 24
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm exec playwright install --with-deps chromium
- name: Run smoke tests
run: pnpm exec playwright test --grep @smoke --project=chromium
env:
CI: true