Skip to content

Commit

Permalink
Merge pull request #452 from M-L-D-H/tsb
Browse files Browse the repository at this point in the history
Add test for frontend freshness
  • Loading branch information
theodore-s-beers authored Feb 5, 2024
2 parents 6ff1561 + b46322e commit e25a462
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/frontend_freshness.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Ensure website is up to date

on:
push:
branches:
- frontend
schedule:
- cron: "9 6 * * 3"
workflow_dispatch:

jobs:
test:
name: Verify data freshness

runs-on: ubuntu-latest

steps:
- name: Check out repo
uses: actions/checkout@v4
with:
ref: frontend

- name: Set up Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x

- name: Run test
run: deno test --allow-read deno/date_test.ts

0 comments on commit e25a462

Please sign in to comment.