Skip to content

fix map interraction on zoom and missing tab #1126

fix map interraction on zoom and missing tab

fix map interraction on zoom and missing tab #1126

Workflow file for this run

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