Skip to content
Merged
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
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,15 @@ jobs:
working-directory: web
run: pnpm typecheck

# web/package.json's "name" field is "ntask" (not @ntask/web), so this
# is the correct --filter target. Blocking, not continue-on-error: the
# lint config and script have been fully working locally with zero
# errors since ntask/web/eslint.config.mjs and web/package.json's
# "lint": "eslint ." script were added — it was simply never invoked in
# CI (P6-E11-W2-S4-T25).
- name: Lint
run: pnpm --filter ntask lint

- name: Unit tests
working-directory: web
run: pnpm test
Expand Down
64 changes: 47 additions & 17 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-istanbul": "^3.2.6",
"eslint": "^9.32.0",
"eslint-plugin-react-hooks": "^7.1.1",
"jest-axe": "^10.0.0",
"jsdom": "^25.0.0",
"size-limit": "^11.1.6",
Expand Down
Loading