Daniel Zlotin 8 年前
父节点
当前提交
fcdc52b60a
共有 1 个文件被更改,包括 12 次插入0 次删除
  1. 12
    0
      .travis.yml

+ 12
- 0
.travis.yml 查看文件

1
+before_install:
2
+  # Repo for newer Node.js versions
3
+  - curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
4
+  # Repo for Yarn
5
+  - sudo apt-key adv --fetch-keys http://dl.yarnpkg.com/debian/pubkey.gpg
6
+  - echo "deb http://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
7
+  - sudo apt-get update -qq
8
+  - sudo apt-get install -y -qq yarn
9
+cache:
10
+  directories:
11
+  - $HOME/.yarn-cache
12
+
1
 git:
13
 git:
2
   depth: 3
14
   depth: 3
3
 
15