Skip to content

Commit

Permalink
GitHub - Import fs (#3196)
Browse files Browse the repository at this point in the history
  • Loading branch information
kddejong authored May 1, 2024
1 parent 09fde4e commit 970357b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci-pr-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
uses: actions/github-script@v7
id: set-pr
with:
script: return Number(fs.readFileSync('./NR'));
script: |
var fs = require('fs');
return Number(fs.readFileSync('./NR'));
result-encoding: string
- name: Upload coverage report
if: '!cancelled()'
Expand Down

0 comments on commit 970357b

Please sign in to comment.