Skip to content

Fix: In ´ngx-leaflet´ fixed ´addVectorLayer´ method so that the styling is also used of the layer vector layers, while maintaining performance. #253

Fix: In ´ngx-leaflet´ fixed ´addVectorLayer´ method so that the styling is also used of the layer vector layers, while maintaining performance.

Fix: In ´ngx-leaflet´ fixed ´addVectorLayer´ method so that the styling is also used of the layer vector layers, while maintaining performance. #253

Workflow file for this run

name: Continuous integration
on:
push:
branches:
- '*'
- '!master'
pull_request:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node 18.x
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Install dependencies & build component library
run: npm ci
- name: Run linter
env:
NODE_OPTIONS: "--max_old_space_size=4096"
run: npm run lint
- name: Run tests
run: npm test
- name: Build documentation
run: npm run build:prod