12 lines
192 B
YAML
12 lines
192 B
YAML
language: node_js
|
|
node_js:
|
|
- "7"
|
|
before_script:
|
|
- npm install -g webpack
|
|
- npm install -g eslint
|
|
- npm install -g karma-cli
|
|
script:
|
|
- npm run lint
|
|
- npm run build
|
|
- npm run test
|