28 lines
816 B
YAML
28 lines
816 B
YAML
name: Lint Code Base
|
|
# Documentation:
|
|
# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions
|
|
on:
|
|
push:
|
|
branches-ignore: [master, development]
|
|
pull_request:
|
|
branches: [master, development]
|
|
|
|
jobs:
|
|
build:
|
|
name: Lint Code Base
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v3
|
|
with:
|
|
# Full git history is needed to get a proper list of changed files within `super-linter`
|
|
fetch-depth: 0
|
|
- name: Lint Code Base
|
|
uses: github/super-linter/slim@v4
|
|
env:
|
|
VALIDATE_ALL_CODEBASE: false
|
|
VALIDATE_JAVASCRIPT_ES: false
|
|
VALIDATE_JAVASCRIPT_STANDARD: false
|
|
DEFAULT_BRANCH: development
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|