Skip to content

Commit

Permalink
[actions/triage] Omit dev dependency installation (#179664)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbudz authored Apr 2, 2024
1 parent d335594 commit 2d363d2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/fix-version-gaps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
path: ./actions

- name: Install Actions
run: npm install --production --prefix ./actions
run: npm ci --omit=dev --prefix ./actions

- name: Run Fix Gaps
uses: ./actions/fix-version-gaps
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-failed-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ jobs:
GITHUB_TOKEN: ${{secrets.KIBANAMACHINE_TOKEN}}
SLACK_TOKEN: ${{secrets.SLACK_TOKEN_FAILED_TEST_NOTIFIER}}
run: |
npm install
npm ci --omit=dev
node failed-test-label ${{github.event.issue.number}} || true
4 changes: 2 additions & 2 deletions .github/workflows/skip-failed-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
path: ./actions

- name: Install Actions
run: npm install --production --prefix ./actions
run: npm ci --omit=dev --prefix ./actions

- name: User Permission Check
uses: ./actions/permission-check
Expand All @@ -43,5 +43,5 @@ jobs:
GITHUB_TOKEN: ${{secrets.KIBANAMACHINE_TOKEN}}
SLACK_TOKEN: ${{secrets.SLACK_TOKEN_FAILED_TEST_NOTIFIER}}
run: |
npm install
npm ci --omit=dev
node failed-test-auto ${{github.event.issue.number}}

0 comments on commit 2d363d2

Please sign in to comment.