ci: remove apps tests from pipeline
No longer needed since apps have moved to another repo
This commit is contained in:
parent
76e07119fe
commit
2334cff67f
3 changed files with 10 additions and 11 deletions
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
|
@ -59,9 +59,6 @@ jobs:
|
|||
- name: Build packages
|
||||
run: pnpm -r build
|
||||
|
||||
- name: Run global tests
|
||||
run: pnpm test
|
||||
|
||||
- name: Run linter
|
||||
run: pnpm -r lint
|
||||
|
||||
|
|
|
@ -1,10 +1,2 @@
|
|||
#!/usr/bin/env sh
|
||||
. "$(dirname -- "$0")/_/husky.sh"
|
||||
|
||||
# If test-db is not running with docker
|
||||
if ! docker ps | grep -q test-db; then
|
||||
npm run start:pg
|
||||
fi
|
||||
|
||||
pnpm -r test
|
||||
pnpm -r lint:fix
|
||||
|
|
10
.husky/pre-push
Normal file
10
.husky/pre-push
Normal file
|
@ -0,0 +1,10 @@
|
|||
#!/usr/bin/env sh
|
||||
. "$(dirname -- "$0")/_/husky.sh"
|
||||
|
||||
# If test-db is not running with docker
|
||||
if ! docker ps | grep -q test-db; then
|
||||
npm run start:pg
|
||||
fi
|
||||
|
||||
pnpm -r test
|
||||
pnpm -r lint:fix
|
Loading…
Reference in a new issue