Use git hash for foxglove package version (#558) #1400
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: | |
branches: [master] | |
pull_request: | |
jobs: | |
build: | |
name: Lint Code Base | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Foxglove dependencies | |
run: | | |
pip install GitPython | |
cd foxglove | |
./foxglove.py build | |
- name: Lint Code Base | |
uses: super-linter/[email protected] | |
env: | |
VALIDATE_ALL_CODEBASE: true | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
LINTER_RULES_PATH: / | |
VALIDATE_BASH: true | |
VALIDATE_BASH_EXEC: true | |
VALIDATE_PYTHON_FLAKE8: true | |
VALIDATE_TSX: true | |
VALIDATE_TYPESCRIPT_ES: true | |
TYPESCRIPT_ES_CONFIG_FILE: foxglove/.eslintrc.json | |
VALIDATE_CLANG_FORMAT: true |