Skip to content

Change min zoom level for fields from 10 to 11 #129

Change min zoom level for fields from 10 to 11

Change min zoom level for fields from 10 to 11 #129

Workflow file for this run

name: PR - Test and Build
on:
pull_request:
branches: [main]
permissions:
contents: read
concurrency:
group: pr-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
test-build:
runs-on: ubuntu-latest
env:
CI: true
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js 24
uses: actions/setup-node@v4
with:
node-version: 24.x
cache: npm
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Build
run: npm run build