Check links #246
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
# For more information about the configurations used | |
# in this file, please see the GitHub actions documentation. | |
# | |
# https://help.github.com/en/github/automating-your-workflow-with-github-actions/ | |
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: Install dependencies | |
run: npm install | |
- name: Check links | |
run: npm run check-links | |
name: Check links | |
on: | |
schedule: | |
- cron: "0 0 * * SAT" |