Use git hash for foxglove package version #1396
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: 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: | | |
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 |