Files
2024-12-13 08:53:01 +01:00

25 lines
617 B
YAML

version: 2
jobs:
build:
docker:
- image: circleci/node:latest-browsers
environment:
CHROME_BIN: '/usr/bin/google-chrome'
steps:
- checkout
- run:
name: update-npm
command: 'sudo npm install -g npm@6'
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: install-npm-wee
command: npm install
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- ./node_modules
- run:
name: test
command: npm test