Skip to content

added show and hide all pois btns #1318

added show and hide all pois btns

added show and hide all pois btns #1318

Workflow file for this run

name: Test and Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'skip ci')"
steps:
- uses: actions/checkout@v3
- name: Set nvmrc version as .env variable
run: echo "NODE_VERSION=$(cat .nvmrc)" >> $GITHUB_ENV
- name: Use Node.js (.nvmrc)
uses: actions/setup-node@v3
with:
node-version: "${{ env.NODE_VERSION }}"
- run: npm ci
- run: npm run build --if-present
- run: npm run lint
- run: npm run type-check
- run: npm run test:ci
env:
CI: true