Merge pull request #289 from cake-contrib/dependabot/github_actions/g… #339
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
name: Lint Code Base | |
on: | |
push: | |
branches: [master, develop] | |
pull_request: | |
jobs: | |
super_linter: | |
name: Lint with Super Linter | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2.3.4 | |
with: | |
fetch-depth: 0 | |
- name: Lint Code Base | |
uses: github/super-linter@v3.17.0 | |
env: | |
VALIDATE_ALL_CODEBASE: false | |
DEFAULT_BRANCH: develop | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
LINTER_RULES_PATH: "." |