Files
impress.js/.circleci/config.yml
Henrik Ingo dcc8446788 Remove npm-update from CircleCI (#778)
It started failing 2 months ago and shouldn't be needed at all.
2021-01-03 20:31:27 +02:00

27 lines
629 B
YAML

version: 2
jobs:
build:
working_directory: ~/impress.js
docker:
- image: circleci/node:current-browsers
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: build
command: npm run build
- run:
name: lint
command: npm run lint
- run:
name: test
command: npm test