Support docker deployment (#28) #124
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: | |
# Run superlinter on pushes to default branch | |
branches: | |
- main | |
# Run superlinter on pull request events | |
pull_request: | |
# Declare default permissions as read-only | |
permissions: read-all | |
jobs: | |
super-linter: | |
if: false # TODO: Enable this job once the super-linter action has been configured | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: read | |
statuses: write | |
steps: | |
- name: 🔒 harden runner | |
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
fetch-depth: 0 | |
- name: 🧹 run superlinter | |
uses: super-linter/super-linter@85f7611e0f7b53c8573cca84aa0ed4344f6f6a4d # v7.2.1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
LINTER_RULES_PATH: ".github/linters" | |
MARKDOWN_CONFIG_FILE: ".markdownlint.yml" | |
YAML_CONFIG_FILE: ".yamllint.yml" | |
VALIDATE_ALL_CODEBASE: false | |
VALIDATE_MARKDOWN_PRETTIER: false | |
VALIDATE_YAML_PRETTIER: false | |
VALIDATE_NATURAL_LANGUAGE: false | |
MULTI_STATUS: false |