Use npm instead of yarn
This commit is contained in:
parent
7075ebdbb9
commit
41806b2117
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"singleQuote": false
|
||||||
|
}
|
|
@ -1,10 +1,10 @@
|
||||||
language: node_js
|
language: node_js
|
||||||
cache: yarn
|
cache: npm
|
||||||
services:
|
services:
|
||||||
- redis-server
|
- redis-server
|
||||||
script:
|
script:
|
||||||
- yarn test --silent
|
- npm test
|
||||||
- yarn build
|
- npm run build
|
||||||
deploy:
|
deploy:
|
||||||
provider: heroku
|
provider: heroku
|
||||||
skip_cleanup: true
|
skip_cleanup: true
|
||||||
|
|
|
@ -4,5 +4,6 @@ module.exports = {
|
||||||
},
|
},
|
||||||
setupTestFrameworkScriptFile:
|
setupTestFrameworkScriptFile:
|
||||||
"<rootDir>/modules/__tests__/setupTestFramework.js",
|
"<rootDir>/modules/__tests__/setupTestFramework.js",
|
||||||
testMatch: ["**/__tests__/*-test.js"]
|
testMatch: ["**/__tests__/*-test.js"],
|
||||||
|
testURL: "http://localhost/"
|
||||||
};
|
};
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue