fix map interraction on zoom and missing tab #1125
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 | |
| on: [push, pull_request] | |
| jobs: | |
| backend: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install dependencies | |
| run: pip install 'black==25.12.0' | |
| - name: Backend code formatting check (Black) | |
| run: black --check . | |
| frontend: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Use setup-node | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version-file: "./atlas/static/.nvmrc" | |
| # cache: 'npm' | |
| # cache-dependency-path: './atlas/static/package-lock.json' | |
| - name: Install dependencies | |
| run: node --version | |
| # working-directory: atlas | |
| - name: Install dependencies | |
| run: npm ci | |
| working-directory: ./atlas/static | |
| - name: Run check with ESLint | |
| run: npm run lint | |
| working-directory: ./atlas/static |