Skip to content

feat: edit visibility of map (#137) #553

feat: edit visibility of map (#137)

feat: edit visibility of map (#137) #553

name: code validation
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize]
jobs:
test-job:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js collect version
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- name: Cache dependencies
id: cache
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci
- name: lint
run: npm run lint
- name: build
run: npm run build
env:
CI: true