chore: Update rde_setup.ps1 to fix aio aem:rde:reset command #10
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 codebase | |
on: | |
push: | |
branches: [feature-102, dev] | |
jobs: | |
lint: | |
name: Lint codebase using super-linter | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
statuses: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Git pull to get the latest changes | |
run: | |
git pull origin feature-102 | |
- name: Super-Linter | |
uses: super-linter/super-linter@v6.7.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
IGNORE_GENERATED_FILES: true | |
IGNORE_GITIGNORED_FILES: true | |
VALIDATE_ALL_CODEBASE: false | |
VALIDATE_JAVASCRIPT_ES: true | |
VALIDATE_JAVA: true |