Skip to content

Fix audit

Fix audit #2590

Workflow file for this run

# Ensures packages test correctly
name: Test Packages
on:
push:
jobs:
test:
name: Test Packages
runs-on: ubuntu-xl
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Enable Corepack
run: corepack enable
- name: Setup NodeJS
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Configure Playwright
run: |
pnpm exec playwright install-deps
pnpm exec playwright install
- name: Build
run: pnpm build:packages
- name: Test
run: pnpm test