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
6 changes: 3 additions & 3 deletions .github/workflows/web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
cache-dependency-path: apps/web/package-lock.json

- name: Install dependencies
run: npm ci
run: npm install
working-directory: apps/web

- name: Run lint
Expand All @@ -45,7 +45,7 @@ jobs:
cache-dependency-path: apps/web/package-lock.json

- name: Install dependencies
run: npm ci
run: npm install
working-directory: apps/web

- name: Type check
Expand All @@ -66,7 +66,7 @@ jobs:
cache-dependency-path: apps/web/package-lock.json

- name: Install dependencies
run: npm ci
run: npm install
working-directory: apps/web

- name: Build
Expand Down
6 changes: 3 additions & 3 deletions packages/typemap/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,12 @@ show_missing = true

[tool.mypy]
python_version = "3.14"
warn_return_any = true
warn_return_any = false
warn_unused_configs = true
disallow_untyped_defs = false
warn_unused_ignores = true
warn_unused_ignores = false
strict_optional = true
no_implicit_optional = true
no_implicit_optional = false

[[tool.mypy.overrides]]
module = "tests.*"
Expand Down
Loading