Bump undici from 6.22.0 to 6.24.0 #375
Workflow file for this run
This file contains hidden or 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 | |
| permissions: | |
| contents: read | |
| 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 |