mapillary-js
Version:
WebGL JavaScript library for displaying street level imagery from mapillary.com
36 lines (33 loc) • 754 B
YAML
version: 2
jobs:
build:
docker:
- image: circleci/node:10.4.0-browsers
environment:
DISPLAY: :99
CHROME_BIN: "/usr/bin/google-chrome"
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: Install npm
command: npm install
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- node_modules
- run:
name: Test
command: npm test
- run:
name: Docs
command: npm run build-docs
workflows:
version: 2
complete:
jobs:
- build:
filters:
branches:
ignore: gh-pages