Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit a39a315

Browse files
victorbdaviddias
authored andcommitted
chore: updating CI files (#648)
This commit updates all CI scripts to the latest version
1 parent 727a19b commit a39a315

File tree

4 files changed

+19
-11
lines changed

4 files changed

+19
-11
lines changed

.travis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Warning: This file is automatically synced from https://github.com/ipfs/ci-sync so if you want to change it, please change it there and ask someone to sync all repositories.
12
sudo: false
23
language: node_js
34

@@ -13,6 +14,7 @@ matrix:
1314
script:
1415
- npm run lint
1516
- npm run test
17+
- npm run coverage
1618

1719
before_script:
1820
- export DISPLAY=:99.0

appveyor.yml

+14-11
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,29 @@
1+
# Warning: This file is automatically synced from https://github.com/ipfs/ci-sync so if you want to change it, please change it there and ask someone to sync all repositories.
2+
version: "{build}"
3+
14
environment:
25
matrix:
36
- nodejs_version: "6"
47
- nodejs_version: "8"
58

6-
init:
7-
- git config --global core.autocrlf input
9+
matrix:
10+
fast_finish: true
811

9-
# cache:
10-
# - node_modules
12+
install:
13+
# Install Node.js
14+
- ps: Install-Product node $env:nodejs_version
1115

12-
platform:
13-
- x64
16+
# Upgrade npm
17+
- npm install -g npm
1418

15-
install:
16-
- ps: Install-Product node $env:nodejs_version $env:platform
19+
# Output our current versions for debugging
1720
- node --version
1821
- npm --version
22+
23+
# Install our package dependencies
1924
- npm install
2025

2126
test_script:
22-
- npm test
27+
- npm run test:node
2328

2429
build: off
25-
26-
version: "{build}"

ci/Jenkinsfile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// Warning: This file is automatically synced from https://github.com/ipfs/ci-sync so if you want to change it, please change it there and ask someone to sync all repositories.
2+
javascript()

circle.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Warning: This file is automatically synced from https://github.com/ipfs/ci-sync so if you want to change it, please change it there and ask someone to sync all repositories.
12
machine:
23
node:
34
version: stable

0 commit comments

Comments
 (0)