Skip to content

Commit 970357b

Browse files
authored
GitHub - Import fs (#3196)
1 parent 09fde4e commit 970357b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci-pr-coverage.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ jobs:
2424
uses: actions/github-script@v7
2525
id: set-pr
2626
with:
27-
script: return Number(fs.readFileSync('./NR'));
27+
script: |
28+
var fs = require('fs');
29+
return Number(fs.readFileSync('./NR'));
2830
result-encoding: string
2931
- name: Upload coverage report
3032
if: '!cancelled()'

0 commit comments

Comments
 (0)