Skip to content

Lint GitHub Action workflows #533

Lint GitHub Action workflows

Lint GitHub Action workflows #533

Workflow file for this run

name: PR
on: pull_request
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
actionlint:
name: Lint GitHub Action Workflows
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Check workflow files
uses: docker://ponylang/shared-docker-ci-actionlint:20230810
with:
args: -color
superlinter:
name: Lint markdown and yaml
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Lint codebase
uses: docker://github/super-linter:v3.8.3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_ALL_CODEBASE: false
VALIDATE_MD: true
VALIDATE_YAML: true
DEFAULT_BRANCH: main
check-spelling:
name: Spellcheck markdown
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Check spelling
uses: rojopolis/spellcheck-github-actions@e0dcc87bedf34ff10d6be443753f1c770bacbaa2