File tree Expand file tree Collapse file tree 3 files changed +23
-8
lines changed Expand file tree Collapse file tree 3 files changed +23
-8
lines changed Original file line number Diff line number Diff line change 9
9
10
10
before_script :
11
11
- nvm install 4
12
+ - npm install
12
13
13
- script : bash ./build/travis/script.sh
14
+ script :
15
+ - npm test
16
+ - bash ./build/travis/script.sh
14
17
15
18
notifications :
16
19
irc :
Original file line number Diff line number Diff line change 2
2
3
3
set -x
4
4
5
- if [[ $RUNJOB == eslint ]]; then
6
- npm install eslint
7
- npm install --save eslint-config-wikimedia
8
- ./node_modules/.bin/eslint .
9
- exit $?
10
- fi
11
-
12
5
if [[ $RUNJOB == qunit ]]; then
13
6
cd lib/TestRunner
14
7
phantomjs runTests.phantom.js ../../tests/runTests.html
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " DataValuesJavaScript" ,
3
+ "repository" : {
4
+ "type" : " git" ,
5
+ "url" : " https://github.com/wmde/DataValuesJavaScript"
6
+ },
7
+ "license" : " GPL-2.0+" ,
8
+ "dependencies" : {
9
+ "jquery" : " ^3.2.1"
10
+ },
11
+ "devDependencies" : {
12
+ "eslint" : " ^3.19.0" ,
13
+ "eslint-config-wikimedia" : " 0.4.0"
14
+ },
15
+ "scripts" : {
16
+ "test" : " npm run eslint" ,
17
+ "eslint" : " eslint ."
18
+ }
19
+ }
You can’t perform that action at this time.
0 commit comments