[Snyk] Upgrade maplibre-gl from 4.5.2 to 4.6.0 #4058
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: 'ESLint error report' | |
on: | |
pull_request: | |
branches: | |
- develop | |
- tenant/* | |
- main | |
jobs: | |
ubuntu-job: | |
name: 'ESLint on Ubuntu' | |
runs-on: ubuntu-latest # Can be self-hosted runner also | |
steps: | |
- name: 'Checkout the repository' | |
uses: actions/checkout@v2 | |
- name: Upgrade npm to latest version | |
run: sudo npm i -g npm@latest | |
- name: 'Install Node Modules' | |
run: npm install --legacy-peer-deps | |
- name: 'Running ESLint only showing errors' | |
run: npm run lint:errors |