Skip to content

fix npm start

fix npm start #201

Workflow file for this run

name: test
on:
push:
branches:
- "**"
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: "npm"
cache-dependency-path: "package-lock.json"
- name: Install dependencies
run: |
npm install
npx playwright install chromium --with-deps
- run: npm run build && npm run -w devtools-ui build
- run: npm run -ws --include-workspace-root lint
- run: npm test && npm run -w examples test