Update user mod view to display rankban status #133
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 | |
on: | |
push: | |
branches-ignore: | |
- 'l10n_master' | |
pull_request: | |
paths-ignore: | |
- 'translation/dest/**' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v3 | |
with: | |
run_install: true | |
- uses: github/codeql-action/init@v3 | |
with: | |
languages: javascript | |
- uses: github/codeql-action/analyze@v3 | |
- run: pnpm run lint | |
- run: pnpm run check-format |