We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d046385 commit 87c005eCopy full SHA for 87c005e
1 file changed
.github/workflows/pr-health-check.yml
@@ -27,10 +27,13 @@ jobs:
27
uses: actions/setup-node@v4
28
with:
29
node-version: 20
30
- cache: 'npm'
+ registry-url: 'https://registry.npmjs.org'
31
32
- name: Install dependencies
33
- run: npm ci --verbose
+ timeout-minutes: 5
34
+ run: |
35
+ npm config set registry https://registry.npmjs.org
36
+ npm ci
37
38
- name: Run commitlint on PR commits
39
if: github.event_name == 'pull_request'
0 commit comments