Skip to content

Commit 87c005e

Browse files
committed
[PETOSS-829] gha fixes +3
1 parent d046385 commit 87c005e

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/pr-health-check.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,13 @@ jobs:
2727
uses: actions/setup-node@v4
2828
with:
2929
node-version: 20
30-
cache: 'npm'
30+
registry-url: 'https://registry.npmjs.org'
3131

3232
- name: Install dependencies
33-
run: npm ci --verbose
33+
timeout-minutes: 5
34+
run: |
35+
npm config set registry https://registry.npmjs.org
36+
npm ci
3437
3538
- name: Run commitlint on PR commits
3639
if: github.event_name == 'pull_request'

0 commit comments

Comments
 (0)