Skip to content

Commit

Permalink
- Debugging.
Browse files Browse the repository at this point in the history
  • Loading branch information
miroslavpojer committed Jul 8, 2024
1 parent e9ccd10 commit bd1d719
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ jobs:
with:
script: |
const violationCount = parseInt('${{ steps.test_1.outputs.violation-count }}');
const violationCount2 = parseInt("${{ steps.test_1.outputs.violation-count }}");
const violationCount3 = parseInt(`${{ steps.test_1.outputs.violation-count }}`);
console.log(`Test 1 violation count: ${violationCount}`);
if (violationCount !== 5) {
core.setFailed(`Wrong amount '${violationCount}' of violations detected in 'Test 1'`);
Expand Down

0 comments on commit bd1d719

Please sign in to comment.