Explorar o código

ci: remove apps tests from pipeline

No longer needed since apps have moved to another repo
Nicolas Meienberger %!s(int64=3) %!d(string=hai) anos
pai
achega
2334cff67f
Modificáronse 3 ficheiros con 10 adicións e 11 borrados
  1. 0 3
      .github/workflows/ci.yml
  2. 0 8
      .husky/pre-commit
  3. 10 0
      .husky/pre-push

+ 0 - 3
.github/workflows/ci.yml

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

+ 0 - 8
.husky/pre-commit

@@ -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 - 0
.husky/pre-push

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