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