fix(packages): workspace drift (#1270)

This commit is contained in:
rahim
2026-04-07 21:15:23 -07:00
committed by GitHub
parent 9912a8e759
commit b874dad306
6 changed files with 275 additions and 94 deletions
+26
View File
@@ -120,6 +120,32 @@ jobs:
- name: Test package
run: pnpm turbo run test --filter="${{ matrix.package }}"
test-spf:
name: Test (@videojs/spf)
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.59.1-noble
env:
PLAYWRIGHT_BROWSERS_PATH: /ms-playwright
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Test SPF
run: pnpm turbo run test --filter="@videojs/spf" --env-mode=loose
build:
needs: install
runs-on: ubuntu-latest