From 44f9ba0e7fa35779b1a8a83c0b7d35982df0fda9 Mon Sep 17 00:00:00 2001 From: Eli Bosley Date: Wed, 23 Oct 2024 22:18:02 -0400 Subject: [PATCH] fix: subdependenies --- .github/workflows/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 560e3331b..c4dfc6d9c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -49,6 +49,7 @@ jobs: run: docker buildx build -t builder -f ./Dockerfile . lint-api: + needs: [build-register-container] continue-on-error: false defaults: run: @@ -73,6 +74,7 @@ jobs: docker run --rm builder npm run lint test-api: + needs: [build-register-container] continue-on-error: false defaults: run: @@ -126,6 +128,7 @@ jobs: run: npm run lint build-api: + needs: [build-register-container] defaults: run: working-directory: api