Skip to content

Run Daily Bard Test #423

Run Daily Bard Test

Run Daily Bard Test #423

Workflow file for this run

name: Run Daily Bard Test
on:
schedule:
- cron: '0 0 * * *'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 18
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test-daily
env:
COOKIE: ${{ secrets.COOKIE }}