Skip to content

Commit f5282d2

Browse files
committed
fix: remove setup dependecy step
1 parent a158a7a commit f5282d2

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/qa.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,11 @@ on:
1717
closed,
1818
]
1919
pull_request_review:
20-
types: [submitted, dismissed]
20+
types: [ submitted, dismissed ]
2121

2222
concurrency:
23-
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ github.event_name }}-${{ github.event.action || 'default' }}
23+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref
24+
}}-${{ github.event_name }}-${{ github.event.action || 'default' }}
2425
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
2526

2627
jobs:
@@ -89,12 +90,12 @@ jobs:
8990
slack_channel_id: ${{ env.SLACK_CHANNEL_ID }}
9091

9192
# Setup dependencies for QA (skip for draft PRs)
92-
- name: Setup dependencies
93-
uses: settlemint/shared-actions/.github/actions/setup-dependencies@e6f1bf8860111910c2ec9538e9edc137f39e8ef1 # main
94-
with:
95-
github_token: ${{ secrets.GITHUB_TOKEN }}
96-
npm_token: ${{ env.NPM_TOKEN }}
97-
disable_node: "true"
93+
# - name: Setup dependencies
94+
# uses: settlemint/shared-actions/.github/actions/setup-dependencies@e6f1bf8860111910c2ec9538e9edc137f39e8ef1 # main
95+
# with:
96+
# github_token: ${{ secrets.GITHUB_TOKEN }}
97+
# npm_token: ${{ env.NPM_TOKEN }}
98+
# disable_node: "true"
9899

99100
- name: Login to GitHub Container Registry
100101
if: |
@@ -213,9 +214,8 @@ jobs:
213214
uses: settlemint/shared-actions/.github/actions/build-status-labeler@e6f1bf8860111910c2ec9538e9edc137f39e8ef1 # main
214215
with:
215216
pr_number: ${{ github.event.pull_request.number }}
216-
workflow_status:
217-
${{ steps.secret-scan.outcome == 'success' && 'success' || 'failure'
218-
}}
217+
workflow_status: ${{ steps.secret-scan.outcome == 'success' && 'success' ||
218+
'failure' }}
219219

220220
# Check PR review status (PR and PR review events only)
221221
- name: Check PR review status

0 commit comments

Comments
 (0)