Removed healthcheck from compose #46
This file contains hidden or 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 Code Base | |
| on: | |
| push: | |
| branches: [main] | |
| # pull_request: | |
| # branches: [main] | |
| jobs: | |
| build: | |
| name: Lint Code Base | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: read | |
| statuses: write | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Lint Code Base | |
| uses: super-linter/[email protected] | |
| env: | |
| VALIDATE_ALL_CODEBASE: true | |
| DEFAULT_BRANCH: main | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| VALIDATE_BASH: true | |
| VALIDATE_DOCKERFILE_HADOLINT: true | |
| VALIDATE_MARKDOWN: true | |
| VALIDATE_YAML: true | |
| # VALIDATE_ENV: false | |
| VALIDATE_GITHUB_ACTIONS: true | |
| # Filter out some file types we don't want to validate | |
| FILTER_REGEX_EXCLUDE: .env |