Skip to content

Create superlinter.yml #1

Create superlinter.yml

Create superlinter.yml #1

Workflow file for this run

name: Super-Linter
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint-code:
runs-on: ubuntu-latest
steps:
# Step 1: Checkout the code
- name: Checkout code
uses: actions/checkout@v3
# Step 2: Run Super-Linter
- name: Run Super-Linter
uses: github/super-linter@v5
env:
VALIDATE_ALL_CODEBASE: true
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}