Skip to content

Health Check

Health Check #115

Workflow file for this run

name: Health Check
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
health-check:
name: Health Check (${{ matrix.shard }}/${{ strategy.job-total }})
timeout-minutes: 60
runs-on: ubuntu-latest
strategy:
matrix:
shard: [1, 2, 3, 4]
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Node & NPM
uses: ./.github/actions/setup
- name: Run E2E Tests
uses: ./.github/actions/e2e
with:
env: 'production'
shard: ${{ matrix.shard }}
total_shards: ${{ strategy.job-total }}