Skip to content

Worker Production Tests #68

Worker Production Tests

Worker Production Tests #68

name: Worker Production Tests
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: worker
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "25"
- name: Install dependencies
run: npm install
- name: Run production tests
run: npm test -- --testPathPatterns=tests/production