Skip to content

Commit

Permalink
Clean-up imports (#302)
Browse files Browse the repository at this point in the history
  • Loading branch information
devpow112 authored Aug 12, 2024
1 parent 514e85f commit 89140cb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,12 @@ jobs:
uses: Brightspace/third-party-actions@actions/github-script
with:
script: |
const { env } = await import('node:process');
const { COVERAGE_REPORT_URL: coverageReportUrl } = env;
const { summary } = core;
summary.clear();
summary.addHeading('Coverage report', 3);
summary.addLink('Report', process.env.COVERAGE_REPORT_URL);
summary.addLink('Report', coverageReportUrl);
summary.addHeading('Generated reports', 3);
const reporters = [{
name: 'mocha',
Expand Down

0 comments on commit 89140cb

Please sign in to comment.