Skip to content

Commit

Permalink
UHF-9380: Debugging...
Browse files Browse the repository at this point in the history
  • Loading branch information
khalima committed Jan 24, 2024
1 parent d3ac531 commit 4a47f00
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/npm_audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ jobs:
# The npm audit command will exit with a 0 exit code if no vulnerabilities were found.
if [ $? -eq 0 ]; then create_pr=false; else create_pr=true; fi;
echo "should_create_pr=${create_pr}" >> $GITHUB_ENV
echo "should_create_pr=${create_pr}" >> $GITHUB_OUTPUT
- name: Run npm audit fix
if: steps.npm_audit.outputs.should_create_pr == 'true'
run: npm audit fix --package-lock-only --loglevel=error;
run: |
echo "debugging the value of should_create_pr: ${steps.npm_audit.outputs.should_create_pr}";
- name: Create Pull Request
if: steps.npm_audit.outputs.should_create_pr == 'true'
Expand Down

0 comments on commit 4a47f00

Please sign in to comment.