-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
43 lines (34 loc) · 748 Bytes
/
.travis.yml
File metadata and controls
43 lines (34 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
language: node_js
node_js:
- "11"
- "10"
- "8"
- "7"
matrix:
include:
- node_js: 'node'
name: 'Node.js: nightly'
env:
- NODEJS_ORG_MIRROR=https://nodejs.org/download/nightly
- NVM_NODEJS_ORG_MIRROR=https://nodejs.org/download/nightly
- node_js: 'node'
name: 'Node.js: canary'
env:
- NODEJS_ORG_MIRROR=https://nodejs.org/download/v8-canary
- NVM_NODEJS_ORG_MIRROR=https://nodejs.org/download/v8-canary
allow_failures:
- name: 'Node.js: nightly'
- name: 'Node.js: canary'
sudo: false
cache:
directories:
- node_modules
- ~/.npm
git:
depth: 3
install:
- npm install --ignore-scripts
script:
- npm run test
after_success:
- npm run coverage