Other/ci cd updates(AST-160402)#1026
Conversation
Security Policy Alert: Secret Policy ViolationThis workflow run has been blocked by StepSecurity's secrets policy because it accesses secrets and the workflow file differs from the default branch. Secret references detected:
To approve this workflow, please add the Note: The label must be added by someone other than the PR author (cx-aniket-shinde) or automation bots to ensure proper security review. After the label is added, you can re-run the blocked workflow to proceed. This workflow will be automatically approved once merged into the default branch. For more information, see StepSecurity's Secret Exfiltration Policy documentation. |
| - name: Verify single lockfile | ||
| run: | | ||
| if [ -f package-lock.json ] && [ -f yarn.lock ]; then | ||
| echo "ERROR: Both lockfiles exist" |
There was a problem hiding this comment.
package-lock.json OR yarn.lock are mandatory, workflow should fail if those files are not present. Please add one more condition for this.
| # VERIFY SINGLE LOCKFILE | ||
| - name: Verify single lockfile | ||
| run: | | ||
| if [ -f package-lock.json ] && [ -f yarn.lock ]; then |
There was a problem hiding this comment.
package-lock.json OR yarn.lock are mandatory, workflow should fail if those files are not present. Please add one more condition for this.
No description provided.