Browse Source

[ci]

tags/v0.10.0
Muthu Kumar 6 years ago
parent
commit
f7cb777f26
  1. 36
      .circleci/config.yml
  2. 2
      package-lock.json
  3. 2
      package.json

36
.circleci/config.yml

@ -0,0 +1,36 @@
# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:10.3
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: npm install
- run: npm install --only=dev
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
# run tests!
- run: npm test

2
package-lock.json

@ -1,6 +1,6 @@
{
"name": "@codefeathers/promise.object",
"version": "0.0.2",
"version": "0.9.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

2
package.json

@ -4,7 +4,7 @@
"description": "Deep resolve promises in objects.",
"main": "es6/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "jasmine"
},
"keywords": [
"Promise",

Loading…
Cancel
Save