1
0
mirror of https://github.com/kremalicious/ipfs.git synced 2024-06-17 09:53:28 +02:00
ipfs/.travis.yml

24 lines
499 B
YAML
Raw Normal View History

2019-10-20 01:40:55 +02:00
dist: xenial
sudo: required
language: node_js
node_js: node
2019-12-08 17:27:44 +01:00
cache:
npm: true
directories:
- .next/cache
2019-10-20 01:40:55 +02:00
before_install:
# Fixes an issue where the max file watch count is exceeded, triggering ENOSPC
# https://stackoverflow.com/questions/22475849/node-js-error-enospc#32600959
- echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
# will run `npm install` automatically here
script:
- npm test
- npm run build
notifications:
email: false