Skip to content

update leaflet fix problem with disappearing map #155

update leaflet fix problem with disappearing map

update leaflet fix problem with disappearing map #155

Workflow file for this run

name: Run tests
on: push
jobs:
test:
name: Testing build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
- run: yarn install
- name: Cache Node Modules
id: cache-node-modules
uses: actions/cache@v2
with:
path: node_modules
key: node-modules-${{ hashFiles('yarn.lock') }}
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
- name: Run Build
run: yarn prod-build