Skip to content

solved bug with styling of webMercatorQuad tiles. #352

solved bug with styling of webMercatorQuad tiles.

solved bug with styling of webMercatorQuad tiles. #352

---
name: deploy viewer
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
defaults:
run:
working-directory: ./viewer
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache-dependency-path: "./viewer/package-lock.json"
- run: npm ci
- name: Deploy
run: npm run deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}