Skip to content

.github/workflows/weekly.yml #81

.github/workflows/weekly.yml

.github/workflows/weekly.yml #81

Workflow file for this run

on:
schedule:
- cron: "0 0 * * 0"
jobs:
test:
name: Testing
runs-on: ubuntu-latest
timeout-minutes: 20
env:
CI: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: 'yarn'
- name: install dependencies
run: yarn --frozen-lockfile
- name: test
run: yarn test