Skip to content

Commit

Permalink
Fix EdgeWorker workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
TsayAdobe committed May 7, 2024
1 parent 545145b commit 0af97dc
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/deploy-edgeworker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,17 @@ jobs:
with:
ref: ${{ inputs.testCodeBranch }}

- name: Cache dependencies
id: cache
uses: actions/cache@v3
with:
path: ./node_modules
key: modules-${{ hashFiles('package-lock.json') }}-${{ runner.os }}

- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci --ignore-scripts

- name: Build Edge Worker Scripts
run: |
npm run ewbuild
Expand Down

0 comments on commit 0af97dc

Please sign in to comment.