ci: remove apps tests from pipeline

No longer needed since apps have moved to another repo
This commit is contained in:
Nicolas Meienberger 2022-08-04 23:05:47 +02:00
parent 76e07119fe
commit 2334cff67f
3 changed files with 10 additions and 11 deletions

View file

@ -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

View file

@ -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
View 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