Skip to content
This repository was archived by the owner on Aug 17, 2025. It is now read-only.

Merge pull request #131 from RyanLua/dependabot/github_actions/action… #73

Merge pull request #131 from RyanLua/dependabot/github_actions/action…

Merge pull request #131 from RyanLua/dependabot/github_actions/action… #73

Workflow file for this run

name: Lint
on:
push:
branches: [ "main" ]
paths:
- '.github/workflows/super-linter.yml'
- '**.css'
- '**.json'
pull_request:
branches: [ "main" ]
paths:
- '.github/workflows/super-linter.yml'
- '**.css'
- '**.json'
permissions: {}
jobs:
run-lint:
name: Super-linter
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
- name: Run Super-linter
uses: github/super-linter@v7
env:
LINTER_RULES_PATH: "/"
FIX_CSS: true
FIX_JSON: true
VALIDATE_CSS: true
VALIDATE_JSON: true
VALIDATE_ALL_CODEBASE: false
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}