diff options
author | Vendicated <vendicated@riseup.net> | 2022-11-11 13:06:04 +0100 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2022-11-11 13:06:04 +0100 |
commit | 31fb19b8c9e883e348bcafae0a587d20b5107ac9 (patch) | |
tree | d87dafe6f75b0eee913f6515c30ccedfea876edf /.github | |
parent | a26f636c9b422f866b0dbe42566cd90c256483d1 (diff) | |
download | Vencord-31fb19b8c9e883e348bcafae0a587d20b5107ac9.tar.gz Vencord-31fb19b8c9e883e348bcafae0a587d20b5107ac9.tar.bz2 Vencord-31fb19b8c9e883e348bcafae0a587d20b5107ac9.zip |
ci: Hopefully fix reporting
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/reportBrokenPlugins.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/reportBrokenPlugins.yml b/.github/workflows/reportBrokenPlugins.yml index 9f694a4..3972b6e 100644 --- a/.github/workflows/reportBrokenPlugins.yml +++ b/.github/workflows/reportBrokenPlugins.yml @@ -25,12 +25,17 @@ jobs: pnpm install --frozen-lockfile pnpm add puppeteer + sudo apt-get install -y chromium-browser + - name: Build web run: pnpm buildWeb --standalone - name: Create Report + timeout-minutes: 10 run: | export PATH="$PWD/node_modules/.bin:$PATH" + export CHROMIUM_BIN=$(which chromium-browser) + esbuild test/generateReport.ts > dist/report.mjs node dist/report.mjs >> $GITHUB_STEP_SUMMARY env: |