From 41a51097b4d4be6fa5d7f9c71f0fa3a10515fd1f Mon Sep 17 00:00:00 2001 From: Doran Date: Thu, 12 Oct 2023 11:01:10 +0200 Subject: [PATCH] Apply to integration tests --- .../workflows/tmp-fix-integration-test.yml | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/tmp-fix-integration-test.yml b/.github/workflows/tmp-fix-integration-test.yml index 06e7aae0..39cee3bd 100644 --- a/.github/workflows/tmp-fix-integration-test.yml +++ b/.github/workflows/tmp-fix-integration-test.yml @@ -17,11 +17,11 @@ jobs: id: files-cache with: path: | - node_modules/ - dist/ - ~/.npm/ - ~/.meteor/ - /tmp/tests/.__tmp_int/ + node_modules + dist + ~/.npm + ~/.meteor + /tmp/tests/.__tmp_int key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }} - name: Install/Retrieve Meteor if: steps.files-cache.outputs.cache-hit != 'true' @@ -35,9 +35,9 @@ jobs: if: steps.files-cache.outputs.cache-hit == 'true' run: ~/.meteor/meteor npm run build - test: + test-integration: needs: build - name: Unit Tests + name: Integration Tests runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -46,11 +46,11 @@ jobs: id: files-cache with: path: | - node_modules/ - dist/ - ~/.npm/ - ~/.meteor/ - /tmp/tests/.__tmp_int/ + node_modules + dist + ~/.npm + ~/.meteor + /tmp/tests/.__tmp_int key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }} - - name: Unit Tests - run: ~/.meteor/meteor npm run test + - run: ~/.meteor/meteor npm run prepare-integration-tests + - run: ~/.meteor/meteor npm run test-integration