[pre-commit.ci] pre-commit autoupdate #181
Workflow file for this run
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: Checking links | |
on: | |
# Automatic check weekly | |
schedule: | |
- cron: "0 9 * * 1" | |
pull_request: | |
jobs: | |
build: | |
name: Building site and running HTML proofer | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source. | |
uses: actions/checkout@v4 | |
- name: Install jekyll site dependencies. | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.3 | |
bundler-cache: true | |
- name: Build site | |
run: npm run build | |
- name: Run HTML proofer. | |
run: npm run link-checker |