Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,9 @@ jobs:
with:
python-version: "3.11"
cache: pip
# The repository keeps its Python dependencies in requirements-dev.txt; without an
# explicit path the cache step fails on a repository with no requirements.txt.
cache-dependency-path: requirements-dev.txt
- name: Install lint dependencies
run: pip install -r requirements-dev.txt
- name: Run Ruff
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"format:check": "prettier --check .",
"lint": "eslint .",
"gates:fast": "pnpm run format:check && pnpm run lint",
"typecheck": "pnpm -r exec tsc --noEmit -p tsconfig.json && pnpm -r --if-present run typecheck && tsc --noEmit -p tsconfig.tools.json",
"typecheck": "tsc -b && pnpm -r exec tsc --noEmit -p tsconfig.json && pnpm -r --if-present run typecheck && tsc --noEmit -p tsconfig.tools.json",
"test": "vitest run && pnpm run test:panel-browser && pnpm run test:boundaries && pnpm run test:build-artifacts && pnpm run test:plugins",
"test:coverage": "vitest run --coverage",
"test:panel-http": "vitest run packages/panel/src/server-http.test.ts packages/panel/src/web-client.test.ts packages/panel/src/server-launcher.test.ts packages/panel/src/web-boundaries.test.ts",
Expand Down
Loading