如何在 travis 中为 node js 启用缓存?

How to enable cache for node js in travis?

我正在尝试使用以下语法:

cache:
  bundler: true
  directories:
    - foldername/foldername/node_modules 

构建完成后,我在 Travis 的 'Cahes' 页面上看到 11 MB 的缓存,但在现实生活中 node_modules 大约是 60 MB,我不能说我有一些性能改进。 没问题还是我做错了什么?

这就是我为 nodejs 缓存文件夹的方式。

# .travis.yml

language: node_js

node_js:
  - "stable"

cache:
  directories:
    - node_modules

注意:位于 directories 下的文件夹是相对于 .travis.yml 文件的。

official documentation 有更多信息。