Skip to content
This repository has been archived by the owner on Jan 19, 2023. It is now read-only.

Commit

Permalink
Remove karma cache
Browse files Browse the repository at this point in the history
Signed-off-by: GuessWhoSamFoo <foos@vmware.com>
  • Loading branch information
GuessWhoSamFoo committed Oct 14, 2020
1 parent 5180218 commit 9490113
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions .github/workflows/preflight-checks.yaml
Expand Up @@ -63,28 +63,6 @@ jobs:
with:
node-version: 10.x
- uses: actions/checkout@v2
- name: Get npm cache directory
id: npm-cache
run: |
echo "::set-output name=dir::$(npm config get cache)"
- uses: actions/cache@v2
if: github.event_name == 'push'
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ runner.os }}-node-push-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-push-${{ hashFiles('**/package-lock.json') }}
${{ runner.os }}-node-push-
- uses: actions/cache@v2
if: github.event_name == 'pull_request'
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ runner.os }}-node-pr-${{ github.event.number }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-pr-${{ github.event.number }}-${{ hashFiles('**/package-lock.json') }}
${{ runner.os }}-node-pr-${{ github.event.number }}-
${{ runner.os }}-node-push-${{ hashFiles('**/package-lock.json') }}
${{ runner.os }}-node-push-
- name: run_karma
run: |
cd web
Expand Down

0 comments on commit 9490113

Please sign in to comment.