diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 1b8996b..6bf022d 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -9,21 +9,22 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Run Docker test containers - run: docker compose up mysql pg -d - - name: Install Dependencies run: npm ci - name: Build run: npm run build - - name: Run Tests - run: npm test - - name: Upload Build uses: actions/upload-artifact@v3 with: name: build path: . retention-days: 1 + + - name: Run Docker test containers + run: docker compose up mysql pg -d + + - name: Run Tests + run: npm test +