aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/reportBrokenPlugins.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/reportBrokenPlugins.yml b/.github/workflows/reportBrokenPlugins.yml
index 8511b42..719eca7 100644
--- a/.github/workflows/reportBrokenPlugins.yml
+++ b/.github/workflows/reportBrokenPlugins.yml
@@ -41,3 +41,17 @@ jobs:
env:
DISCORD_TOKEN: ${{ secrets.DISCORD_TOKEN }}
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
+
+ - name: Create Report (Canary)
+ timeout-minutes: 10
+ if: success() || failure() # even run if previous one failed
+ run: |
+ export PATH="$PWD/node_modules/.bin:$PATH"
+ export CHROMIUM_BIN=$(which chromium-browser)
+ export USE_CANARY=true
+
+ esbuild test/generateReport.ts > dist/report.mjs
+ node dist/report.mjs >> $GITHUB_STEP_SUMMARY
+ env:
+ DISCORD_TOKEN: ${{ secrets.DISCORD_TOKEN }}
+ DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}