Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
with:
ref: ${{steps.prep.outputs.sha}}
- run: |
npm i
npm ci
npx gulp build
npm pack
- id: package-name
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/health-monitor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ jobs:

- name: Install testcafe-hammerhead dependencies and run a build task
run: |
npm i
npm ci
npx gulp build
working-directory: ./HealthMonitor/testcafe-hammerhead

- name: Install Health Monitor dependencies
run: |
npm i
npm i testcafe-hammerhead ../testcafe-hammerhead --save
npm ci
npm ci testcafe-hammerhead ../testcafe-hammerhead --save
working-directory: ./HealthMonitor/health-monitor

- name: Run Health Monitor
Expand Down Expand Up @@ -143,14 +143,14 @@ jobs:

- name: Install testcafe-hammerhead dependencies and run a build task
run: |
npm i
npm ci
npx gulp build
working-directory: ./HealthMonitor/testcafe-hammerhead

- name: Install Health Monitor dependencies
run: |
npm i
npm i testcafe-hammerhead ../testcafe-hammerhead --save
npm ci
npm ci testcafe-hammerhead ../testcafe-hammerhead --save
working-directory: ./HealthMonitor/health-monitor

- name: Run Health Monitor
Expand Down