Skip to content

Daily CI/CD Tests

Daily CI/CD Tests #15

Workflow file for this run

name: Daily CI/CD Tests
on:
schedule:
- cron: '0 0 * * *'
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
token: ${{ secrets.GIT_TOKEN }}
- name: Enable node
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: yarn
- name: Run tests
run: yarn test:cicd --concurrency 2