DevPortal Merge #378
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
# See: https://github.com/github/super-linter | |
--- | |
name: Linter | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
lint: | |
name: Lint code base | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone the repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Lint the code base | |
uses: github/[email protected] | |
env: | |
VALIDATE_MARKDOWN: true | |
VALIDATE_YAML: true | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Spell check | |
uses: crate-ci/typos@master | |
with: | |
files: docs/ |