Skip to content

Online Tests

Online Tests #1

Workflow file for this run

name: Online Tests
on:
workflow_dispatch:
schedule:
- cron: '0 6 * * 1' # Weekly on Monday at 6am UTC
jobs:
online-tests:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm test-online
env:
TEST_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}