15 lines
205 B
YAML
15 lines
205 B
YAML
dist: xenial
|
|
language: node_js
|
|
node_js:
|
|
- "10"
|
|
cache:
|
|
npm: true
|
|
directories:
|
|
- node_modules
|
|
install:
|
|
- npm install
|
|
before_script:
|
|
- npm install -g jshint
|
|
script:
|
|
- npm test
|
|
- jshint ./src |