fix: [301] Better errors for incorrect filenames - reverted changes t… #2345
Workflow file for this run
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: Super-Linter | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
super-linter: | |
name: Lint all code | |
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: Setup Java Action | |
uses: actions/setup-java@v3 | |
with: | |
java-version: "21" | |
distribution: "temurin" | |
- name: Super-Linter | |
uses: github/[email protected] | |
env: | |
VALIDATE_ALL_CODEBASE: false | |
DEFAULT_BRANCH: main | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VALIDATE_JAVA: true | |
VALIDATE_JAVASCRIPT_ES: true | |
VALIDATE_JAVASCRIPT_STANDARD: true | |
VALIDATE_MARKDOWN: true | |
# ignore js files under test and e2e folders | |
FILTER_REGEX_EXCLUDE: .*test/.*.js|e2e/.*\.js |