Skip to content

Commit

Permalink
Apply to integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dd137 committed Oct 12, 2023
1 parent c6eef72 commit 41a5109
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/tmp-fix-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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
Expand All @@ -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

0 comments on commit 41a5109

Please sign in to comment.