UNPKG

esnext-scripts

Version:

Opinionated ESNext application scripts and configurations

27 lines (20 loc) 445 B
version: 2 jobs: build: branches: only: - sid docker: - image: circleci/node:12 working_directory: ~/repo steps: - checkout - restore_cache: keys: - v1-dependencies-{{ checksum "package.json" }} - run: npm install - save_cache: paths: - node_modules key: v1-dependencies-{{ checksum "package.json" }} - run: npm test