[Modules] Updated App Configuration Module to use the latest APIs and added support for CMK #3056
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: '.Platform: Linter (audit)' | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Linter | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
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: docker://ghcr.io/github/super-linter:slim-v4 | |
# uses: github/super-linter@v4 | |
env: | |
VALIDATE_ALL_CODEBASE: false | |
VALIDATE_MARKDOWN: false | |
VALIDATE_ARM: false | |
VALIDATE_JSON: false | |
VALIDATE_YAML: false | |
VALIDATE_GITHUB_ACTIONS: false | |
if: ${{ github.event_name == 'pull_request' }} | |
DEFAULT_BRANCH: ${{ github.base_ref }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
FILTER_REGEX_EXCLUDE: '[module.tests.ps1|Get\-ModulesAsMarkdownTable.ps1|.*yml]' |