From a9497c9d59f0e903933a1da711cafd4936582e29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominique=20J=C3=A4ggi?= Date: Tue, 23 Jan 2024 08:27:02 +0100 Subject: [PATCH] chore: run it test in prefix --- .github/workflows/main.yaml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 97242e23..8fb19646 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -15,11 +15,14 @@ jobs: uses: actions/setup-node@v4 with: node-version: '20.x' - - run: npm ci - - run: npm run lint - - run: npm test - - name: Integration Test - run: npm run test:it + - name: Install Dependencies + run: npm ci + - name: Linting + run: npm run lint + - name: Unit Tests + run: npm test + - name: Integration Tests + run: npm run --prefix packages/spacecat-shared-data-access test:it - uses: codecov/codecov-action@v3 with: token: ${{ secrets.CODECOV_TOKEN }}