Skip to content

fix: remove console log + round lat/lng #335

fix: remove console log + round lat/lng

fix: remove console log + round lat/lng #335

Workflow file for this run

name: Test
on:
pull_request_review:
branches:
- master
types: [ submitted ]
push:
branches-ignore:
- master
concurrency:
group: test-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
if: >-
github.event_name == 'push' ||
(github.event_name == 'pull_request_review' &&
github.event.review.state == 'approved')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node
- run: npm i
- run: npm run test:check