Skip to content

🚧sync project #3

🚧sync project

🚧sync project #3

Workflow file for this run

name: Lint Code Base
on:
push:
branches-ignore: [master, main]
pull_request:
branches: [master, main]
workflow_dispatch:
jobs:
build:
name: "🚀linter: code base linter"
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
statuses: write
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Lint Code Base
uses: super-linter/super-linter@v5
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}