zombiej
5 years ago
1 changed files with 19 additions and 9 deletions
@ -1,12 +1,22 @@ |
|||||
#!/bin/sh |
#!/bin/sh |
||||
|
|
||||
npm run lint && \ |
echo "[TEST ALL] lint" |
||||
npm run dist && \ |
npm run lint |
||||
node ./tests/dekko/dist.test.js && \ |
echo "[TEST ALL] dist" |
||||
LIB_DIR=dist npm test && \ |
npm run dist |
||||
npm run compile && \ |
echo "[TEST ALL] dekko dist" |
||||
node ./tests/dekko/lib.test.js && \ |
node ./tests/dekko/dist.test.js |
||||
LIB_DIR=es npm test && \ |
echo "[TEST ALL] dist test" |
||||
LIB_DIR=lib npm test && \ |
LIB_DIR=dist npm test |
||||
npm test && \ |
echo "[TEST ALL] compile" |
||||
|
npm run compile |
||||
|
echo "[TEST ALL] dekko lib" |
||||
|
node ./tests/dekko/lib.test.js |
||||
|
echo "[TEST ALL] test es" |
||||
|
LIB_DIR=es npm test |
||||
|
echo "[TEST ALL] test lib" |
||||
|
LIB_DIR=lib npm test |
||||
|
echo "[TEST ALL] test" |
||||
|
npm test |
||||
|
echo "[TEST ALL] test node" |
||||
npm run test-node |
npm run test-node |
||||
|
Loading…
Reference in new issue