1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-02-22 22:24:00 +01:00
php-web-maker/.travis.yml

18 lines
340 B
YAML
Raw Normal View History

2016-06-09 13:58:18 +05:30
language: node_js
node_js:
2018-06-23 22:33:42 +02:00
- '10'
2016-06-09 13:58:18 +05:30
install:
2018-06-23 22:33:42 +02:00
- npm i -g npm@latest
2016-06-09 13:58:18 +05:30
- npm install -g eslint
2016-12-04 04:08:38 +05:30
- npm install -g babel-eslint
2018-06-22 21:12:54 +05:30
- npm install -g eslint-plugin-react
2018-06-22 21:18:11 +05:30
- npm install -g eslint-plugin-mocha
2018-06-22 21:08:15 +05:30
- npm install -g eslint-config-synacor
2016-06-09 13:58:18 +05:30
script:
- npm run lint
2018-06-23 22:33:42 +02:00
- npm ci
- npm run test
cache:
directories:
2018-07-03 00:29:38 +05:30
- '$HOME/.npm'