2022-11-11 11:37:37 +00:00
|
|
|
name: Test Patches
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
schedule:
|
|
|
|
# Every day at midnight
|
|
|
|
- cron: 0 0 * * *
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
TestPlugins:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- uses: pnpm/action-setup@v2 # Install pnpm using packageManager key in package.json
|
|
|
|
|
|
|
|
- name: Use Node.js 19
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: 19
|
|
|
|
cache: "pnpm"
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
pnpm install --frozen-lockfile
|
|
|
|
pnpm add puppeteer
|
|
|
|
|
2022-11-11 12:06:04 +00:00
|
|
|
sudo apt-get install -y chromium-browser
|
|
|
|
|
2022-11-11 11:37:37 +00:00
|
|
|
- name: Build web
|
|
|
|
run: pnpm buildWeb --standalone
|
|
|
|
|
|
|
|
- name: Create Report
|
2022-11-11 12:06:04 +00:00
|
|
|
timeout-minutes: 10
|
2022-11-11 11:37:37 +00:00
|
|
|
run: |
|
|
|
|
export PATH="$PWD/node_modules/.bin:$PATH"
|
2022-11-11 12:06:04 +00:00
|
|
|
export CHROMIUM_BIN=$(which chromium-browser)
|
|
|
|
|
2022-11-11 11:37:37 +00:00
|
|
|
esbuild test/generateReport.ts > dist/report.mjs
|
|
|
|
node dist/report.mjs >> $GITHUB_STEP_SUMMARY
|
|
|
|
env:
|
|
|
|
DISCORD_TOKEN: ${{ secrets.DISCORD_TOKEN }}
|
2022-11-11 12:30:51 +00:00
|
|
|
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
|
2022-12-20 01:59:16 +00:00
|
|
|
|
|
|
|
- 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 }}
|