Skip to content

feat(theatre): homepage hero becomes the live Theatre #24

feat(theatre): homepage hero becomes the live Theatre

feat(theatre): homepage hero becomes the live Theatre #24

Workflow file for this run

name: test
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [20, 22]
name: node ${{ matrix.node }}
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Install dependencies
run: npm ci
# One test (ci.test.js) exercises the extraction failure path, which
# launches Chromium — make sure the browser + system deps are present.
- name: Install Playwright Chromium
run: npx playwright install --with-deps chromium
- name: Run tests
run: npm test
- name: Check plugin manifest version sync
run: npm run check-plugin