Add linting and link testing #10
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: Code Review - Linting & Link Checks | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: {} | |
| jobs: | |
| lint: | |
| name: Lint code base | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Run github/super-linter | |
| uses: super-linter/super-linter@v7.3.0 | |
| env: | |
| # Lint all code - disabled in as part of #262 | |
| VALIDATE_ALL_CODEBASE: false | |
| # Need to define main branch as default is set to master in super-linter | |
| DEFAULT_BRANCH: main | |
| # Enable setting the status of each individual linter run in the Checks section of a pull request | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| # The following linter types will be enabled: | |
| VALIDATE_JSON: true | |
| VALIDATE_MARKDOWN: true | |
| VALIDATE_POWERSHELL: true | |
| VALIDATE_YAML: true | |
| #YAMLLINT_CONFIG_FILE: .github/linters/.yamllint.yml | |
| #VALIDATE_EDITORCONFIG: true | |
| # Disable errors to only generate a report | |
| #DISABLE_ERRORS: true | |
| markdown-link-check: | |
| name: Markdown Link Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@master | |
| with: | |
| fetch-depth: 0 | |
| - name: Run linkspector | |
| uses: umbrelladocs/action-linkspector@v1.3.4 | |
| with: | |
| github_token: ${{ secrets.github_token }} | |
| reporter: github-pr-review | |
| fail_on_error: true | |
| config_file: ".github/actions-config/.linkspector.yml" |