Skip to content

Separate syntax and semantics feedback #26

Separate syntax and semantics feedback

Separate syntax and semantics feedback #26

Workflow file for this run

---
name: Super-Linter
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
permissions: read-all
jobs:
build:
name: Lint Code Base
runs-on: ubuntu-latest
permissions:
contents: read
statuses: write
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
# Full git history is needed to get a proper
# list of changed files within `super-linter`
fetch-depth: 0
persist-credentials: false
- name: Run Linter
uses: super-linter/super-linter/slim@v8.3.2
env:
YAML_ERROR_ON_WARNING: true
GITHUB_ACTIONS_COMMAND_ARGS: -shellcheck=
VALIDATE_MARKDOWN_PRETTIER: false
VALIDATE_YAML_PRETTIER: false
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}