mirror of
https://github.com/danbulant/flying-squid
synced 2026-06-21 15:51:51 +00:00
17 lines
379 B
YAML
17 lines
379 B
YAML
version: 2
|
|
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: circleci/node:10
|
|
steps:
|
|
- checkout
|
|
- restore_cache:
|
|
key: dependency-cache-{{ checksum "package.json" }}
|
|
- run: npm i
|
|
- save_cache:
|
|
key: dependency-cache-{{ checksum "package.json" }}
|
|
paths:
|
|
- ./node_modules
|
|
- run: npm run lint
|
|
- run: npm test
|