Skip to content

Commit 45718de

Browse files
committed
make pnpm test also include the depchecks
1 parent 09c5953 commit 45718de

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/make-and-test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,3 @@ jobs:
109109
- run: cd src && npm install -g pnpm
110110
- run: cd src && pnpm run make
111111
- run: source venv/bin/activate && cd src && pnpm run test-github-ci
112-
- run: cd src && pnpm run depcheck

src/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
"c": "LOGS=/tmp/ DEBUG='cocalc:*' ./scripts/c",
1818
"version-check": "pip3 install typing_extensions mypy || pip3 install --break-system-packages typing_extensions mypy && ./workspaces.py version-check && mypy scripts/check_npm_packages.py",
1919
"test-parallel": "unset DEBUG && pnpm run version-check && cd packages && pnpm run -r --parallel test",
20-
"test": "unset DEBUG && pnpm run version-check && ./workspaces.py test",
21-
"test-github-ci": "unset DEBUG && pnpm run version-check && ./workspaces.py test --exclude=jupyter --retries=1",
20+
"test": "unset DEBUG && pnpm run depcheck && pnpm run version-check && ./workspaces.py test",
21+
"test-github-ci": "unset DEBUG && pnpm run depcheck && pnpm run version-check && ./workspaces.py test --exclude=jupyter --retries=1",
2222
"depcheck": "cd packages && pnpm run -r --parallel depcheck",
2323
"prettier-all": "cd packages/",
2424
"local-ci": "./scripts/ci.sh",

0 commit comments

Comments
 (0)