Update pre-commit hook pre-commit/mirrors-prettier to v3.0.1 #30
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
# This is a basic workflow to check for broken links with GitHub Actions | |
name: Link Checker | |
on: | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
linkChecker: | |
timeout-minutes: 2 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Link Checker | |
id: lychee | |
uses: lycheeverse/[email protected] | |
with: | |
# Exclude the image.sc forum (which works) but returns 403 from | |
# github runners, ignore the project slug README since the links are | |
# necessarily not real links - i.e. demos and to be filled by | |
# cookiecutter values. | |
args: "--verbose --exclude https://forum.image.sc/ --exclude-path '{{cookiecutter.project_slug}}/README.md' -- ." | |
fail: true | |
jobSummary: true | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |