Skip to content

CRON Job

CRON Job #1686

Workflow file for this run

name: CRON Job
on:
schedule:
- cron: '0 0 * * *'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install pnpm
run: npm i -g pnpm
- name: install
run: pnpm i --frozen-lockfile
- name: Build
run: pnpm build
- name: test
run: pnpm test
env:
CI: true