Skip to content

docs: add marker clustering example to website #127

docs: add marker clustering example to website

docs: add marker clustering example to website #127

Workflow file for this run

name: Website Test
on: [push, pull_request]
jobs:
build:
name: Build Website
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '20'
cache: npm
cache-dependency-path: ./website/package-lock.json
- name: Install dependencies
working-directory: ./website
run: npm ci
- name: Build website
working-directory: ./website
run: |
npm run build
env:
GOOGLE_MAPS_API_KEY: ${{ secrets.GOOGLE_MAPS_API_KEY }}