Skip to content

Commit

Permalink
ci: add workflow to check join data on schedule
Browse files Browse the repository at this point in the history
  • Loading branch information
damienbutt committed Feb 24, 2024
1 parent e2d9297 commit d94a2de
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Check CH5 Joins

on:
schedule:
- cron: "0 0 * * *"

workflow_dispatch:

jobs:
check:
name: Check the current joins with the latest joins

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false

- name: Setup PNPM
uses: pnpm/action-setup@v3
with:
version: 8

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: pnpm

- name: Install Dependencies
run: pnpm install

- name: Run Check
run: pnpm vitest tests/check.test.ts

0 comments on commit d94a2de

Please sign in to comment.