Skip to content

Nightly Workflow

Nightly Workflow #59

name: Nightly Workflow
on:
schedule:
- cron: '0 0 * * *'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install dependencies
run: npm install
- name: Run Sanity Tests
run: |
npm run test:sanity
env:
CI: true
- name: Upload test results
uses: actions/upload-artifact@v4
if: always()
with:
name: test-results
path: test-report.html