Skip to content

Commit

Permalink
Use correct syntax (#487)
Browse files Browse the repository at this point in the history
b/290997541
  • Loading branch information
oxve committed Jul 18, 2023
1 parent 9e87aaa commit a0c04b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/unit_test_report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,19 +62,19 @@ jobs:
console.log(`${process.env.GITHUB_WORKSPACE}/unit-test-results.zip`);
return true;
- run: unzip unit-test-results.zip -d unit-test-results
if: steps.collect-report.outputs.result
if: ${{ steps.collect-report.outputs.result == 'true' }}
- name: Install node
if: steps.collect-report.outputs.result
uses: actions/setup-node@v3
with:
node-version: 16
- name: Get Datadog CLI
if: steps.collect-report.outputs.result
if: ${{ steps.collect-report.outputs.result == 'true' }}
shell: bash
# TODO: pin version (with checksum?)
run: npm install -g @datadog/datadog-ci
- name: Upload the JUnit files
if: steps.collect-report.outputs.result
if: ${{ steps.collect-report.outputs.result == 'true' }}
shell: bash
run: |
# Loop over platform folders in archive
Expand Down

0 comments on commit a0c04b7

Please sign in to comment.