Skip to content

Commit

Permalink
Merge pull request #651 from adobecom/fixewworkflow
Browse files Browse the repository at this point in the history
MWPW-145723 Fix EdgeWorker deployment workflow
  • Loading branch information
TsayAdobe authored May 8, 2024
2 parents 545145b + 0af97dc commit 1ceafbd
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 1ceafbd

Please sign in to comment.