Skip to content
This repository was archived by the owner on Nov 8, 2024. It is now read-only.

Commit 95dc8f4

Browse files
authored
Merge pull request #97 from apiaryio/greenkeeper/initial
Update dependencies to enable Greenkeeper 🌴
2 parents 276f518 + 77116a5 commit 95dc8f4

File tree

5 files changed

+11889
-14
lines changed

5 files changed

+11889
-14
lines changed

.travis.yml

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
1-
sudo: false
1+
# GH_TOKEN and NPM_TOKEN are expected to be set
2+
# in https://travis-ci.org/apiaryio/gavel.js/settings
23
language: "node_js"
34
node_js:
45
- "6"
56
- "8"
67
- "10"
7-
env:
8-
global:
9-
# GH_TOKEN and NPM_TOKEN encrypted by 'travis encrypt' utility
10-
- secure: "aLqvApCqqaLWbbNhuCdDL02g9j5O1R00rTBo3h7Lb0LnS302Gl4XIFdjcehwOSFWJkd3Rv25A6weiOqEKo9zgGknHjY73ao1BxBaPFFhwMRY4qEVZ3oqhpf5oBuO66tf8l3cHhNkrhXgDtu9J+XU/FetM7PfGyCqhxzLdVMPcXI="
118
cache:
129
directories:
1310
- "node_modules"
1411
before_install:
15-
- "npm -g install npm@latest"
12+
- "npm -g install npm@6"
13+
script:
14+
- "npm run ci:lint || true" # TODO fix all lint errors
15+
- "npm run ci:test"
1616
after_success:
17-
- "npm run coveralls || true"
18-
- "npm run semantic-release || true"
17+
- "npm run ci:release"

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
[![Build status](https://ci.appveyor.com/api/projects/status/0cpnaoakhs8q58tn/branch/master?svg=true)](https://ci.appveyor.com/project/Apiary/gavel-js/branch/master)
66
[![Dependency Status](https://david-dm.org/apiaryio/gavel.js.svg)](https://david-dm.org/apiaryio/gavel.js)
77
[![devDependency Status](https://david-dm.org/apiaryio/gavel.js/dev-status.svg)](https://david-dm.org/apiaryio/gavel.js#info=devDependencies)
8+
[![Greenkeeper badge](https://badges.greenkeeper.io/apiaryio/gavel.js.svg)](https://greenkeeper.io/)
89
[![Coverage Status](https://coveralls.io/repos/apiaryio/gavel.js/badge.svg?branch=master)](https://coveralls.io/r/apiaryio/gavel.js?branch=master)
910
[![Known Vulnerabilities](https://snyk.io/test/npm/gavel/badge.svg)](https://snyk.io/test/npm/gavel)
1011

appveyor.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
environment:
2-
nodejs_version: "6"
2+
nodejs_version: "10"
33
cache:
44
- "node_modules"
55
install:
6-
- ps: Install-Product node 6
7-
- "npm -g install npm@latest"
6+
- ps: Install-Product node 10
7+
- "npm -g install npm@6"
88
- "set PATH=%APPDATA%\\npm;%PATH%"
99
- "npm install"
1010
build: off

0 commit comments

Comments
 (0)