Skip to content

CRON Check Outgoing Links #14

CRON Check Outgoing Links

CRON Check Outgoing Links #14

# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CRON Check Outgoing Links
on:
schedule:
- cron: "0 13 * * 1" # Every Monday at 1PM UTC (9AM EST)
workflow_dispatch:
defaults:
run:
working-directory: frontend
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: frontend/package.json
cache: "npm"
cache-dependency-path: frontend/package-lock.json
- run: npm ci
- run: npm run url