Skip to content

Commit d812d93

Browse files
committed
fix js tests
1 parent cb7b4e3 commit d812d93

File tree

10 files changed

+160
-106
lines changed

10 files changed

+160
-106
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ repos:
99
- id: isort
1010
name: isort
1111
- repo: https://github.com/pre-commit/mirrors-prettier
12-
rev: v3.0.0-alpha.4
12+
rev: v3.0.0-alpha.6
1313
hooks:
1414
- id: prettier

noxfile.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,11 @@ def check_javascript_types(session: Session) -> None:
246246
session.run("npm", "run", "check:types", external=True)
247247

248248

249+
@group.session
250+
def check_javascript_build(session: Session) -> None:
251+
session.run("npm", "run", "build", external=True)
252+
253+
249254
@group.session
250255
def build_javascript(session: Session) -> None:
251256
"""Build javascript client code"""

0 commit comments

Comments
 (0)