Resolve divergence issues between CLI/REST - Related to #707 #217
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 | |
on: | |
push: | |
branches: | |
- 'development' | |
pull_request: | |
branches: | |
- 'development' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout out repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # need full history to get list of changed files | |
- | |
name: Lint code | |
uses: github/super-linter/slim@v4 | |
env: | |
VALIDATE_ALL_CODEBASE: false | |
DEFAULT_BRANCH: development | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VALIDATE_PHP_BUILTIN: false | |
VALIDATE_PHP_PHPSTAN: false | |
VALIDATE_PHP_PSALM: false | |
FILTER_REGEX_EXCLUDE: .*.github/.* |