Files
impress.js/.circleci/config.yml
janis 10a585ae8d Revert "clean up"
This reverts commit 40a3766b37.
2022-12-12 08:41:23 +01: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