fix min and max zoom levels #238
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 and test | |
on: | |
push: | |
branches-ignore: [main] | |
jobs: | |
setup: | |
name: Setup and install | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
cache: npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Lint scripts | |
run: npm run lint:scripts | |
- name: Lint styles | |
run: npm run lint:styles | |
- name: Test application | |
run: npm run test |