Skip to content

Commit

Permalink
Rename build step
Browse files Browse the repository at this point in the history
  • Loading branch information
dd137 committed Oct 12, 2023
1 parent beeef2f commit 9ba15a3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/tmp-fix-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
# Creates dist/ through postinstall->build script
if: steps.files-cache.outputs.cache-hit != 'true'
run: meteor npm ci
- name: Install NPM Dependencies
- name: Run build script
# Make sure dist/ is up-to-date when package-lock.json hasn't changed
if: steps.files-cache.outputs.cache-hit == 'true'
run: meteor npm run build
Expand All @@ -45,13 +45,13 @@ jobs:
uses: actions/cache@v3
id: files-cache
with:
path: |
node_modules
dist/
~/.npm
~/.meteor
/tmp/tests/.__tmp_int
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
path: |
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
- name: Unit Tests bis
Expand Down

0 comments on commit 9ba15a3

Please sign in to comment.