Skip to content

Commit

Permalink
Disable use of cache if for cypress container.
Browse files Browse the repository at this point in the history
  • Loading branch information
timcosgrove committed Dec 3, 2024
1 parent 43f7b87 commit 7427d0f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -416,10 +416,10 @@ jobs:
- name: Install dependencies
uses: ./.github/workflows/install
timeout-minutes: 30
with:
key: ${{ hashFiles('yarn.lock') }}
yarn_cache_folder: .cache/yarn
path: .cache
# with:
# key: ${{ hashFiles('yarn.lock') }}
# yarn_cache_folder: .cache/yarn
# path: .cache

- name: Start server
run: node src/platform/testing/e2e/test-server.js --buildtype vagovprod --port=3002 &
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ runs:
- name: Cache dependencies
id: cache-dependencies
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
if: ${{ inputs.path !== null }}
with:
path: ${{ inputs.path }}
key: ${{ steps.get-node-version.outputs.NODE_VERSION }}-${{ inputs.key }}
Expand Down

0 comments on commit 7427d0f

Please sign in to comment.