Skip to content

fix click events on osm data layer #2427

fix click events on osm data layer

fix click events on osm data layer #2427

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
cache-dependency-path: 'yarn.lock'
- name: Install dependencies
# --frozen-lockfile: don't generate a lockfile and fail if an update is needed
run: yarn install --frozen-lockfile
- name: Run build
run: yarn run build
env:
NODE_OPTIONS: --max-old-space-size=4096
- name: Run the tests
run: yarn test -- --coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}