chore: migrate CI to github, refactore CI and npm scripts, linting fixes (#1023)

This commit is contained in:
Anix
2020-02-14 15:22:53 +05:30
committed by GitHub
parent b3d9b966df
commit 5f7464af48
10 changed files with 71 additions and 28 deletions
+3 -2
View File
@@ -26,8 +26,9 @@
"serve:ssr": "cross-env SSR=1 node server",
"dev": "run-p serve watch:*",
"dev:ssr": "run-p serve:ssr watch:*",
"lint": "eslint . --fix",
"test": "mocha test/*/**",
"lint": "eslint .",
"fixlint" : "eslint . --fix",
"test": "mocha ./test/**/*.test.js",
"testServer": "node cypress/setup.js",
"test:e2e": "start-server-and-test testServer http://localhost:3000 cy:run",
"posttest:e2e": "rimraf cypress/fixtures/docs",