Incentives Freshness Check #44
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Incentives Freshness Check | |
on: | |
schedule: | |
- cron: '30 5 * * 1' | |
permissions: | |
contents: read | |
jobs: | |
verify-incentives-freshness: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v3 | |
with: | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
node-version: 18.x | |
cache: 'yarn' | |
- run: yarn --frozen-lockfile | |
- run: yarn build | |
- name: URL checker | |
run: yarn check-data-freshness |