mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-27 20:49:53 +08:00
chore: update test script
This commit is contained in:
parent
2fe472d15b
commit
3c599528e8
@ -1,35 +1,45 @@
|
||||
#!/bin/sh
|
||||
|
||||
echo "[TEST ALL] test changlog"
|
||||
echo "[TEST ALL] test changlog" > ~test-all.txt
|
||||
node ./scripts/check-version-md.js
|
||||
|
||||
echo "[TEST ALL] check-commit"
|
||||
echo "[TEST ALL] check-commit" > ~test-all.txt
|
||||
npm run check-commit
|
||||
|
||||
echo "[TEST ALL] lint"
|
||||
echo "[TEST ALL] lint" > ~test-all.txt
|
||||
npm run lint
|
||||
|
||||
if [ "$1" != "--skip-build" ]; then
|
||||
echo "[TEST ALL] dist"
|
||||
echo "[TEST ALL] dist" > ~test-all.txt
|
||||
npm run dist
|
||||
|
||||
echo "[TEST ALL] compile"
|
||||
echo "[TEST ALL] compile" > ~test-all.txt
|
||||
npm run compile
|
||||
else
|
||||
echo "Skip build..."
|
||||
fi
|
||||
|
||||
echo "[TEST ALL] dekko dist"
|
||||
echo "[TEST ALL] dekko dist" > ~test-all.txt
|
||||
node ./tests/dekko/dist.test.js
|
||||
|
||||
echo "[TEST ALL] dist test"
|
||||
echo "[TEST ALL] dist test" > ~test-all.txt
|
||||
LIB_DIR=dist npm test
|
||||
|
||||
echo "[TEST ALL] test es"
|
||||
echo "[TEST ALL] test es" > ~test-all.txt
|
||||
LIB_DIR=es npm test
|
||||
|
||||
echo "[TEST ALL] test"
|
||||
echo "[TEST ALL] test" > ~test-all.txt
|
||||
npm test
|
||||
|
||||
echo "[TEST ALL] test node"
|
||||
echo "[TEST ALL] test node" > ~test-all.txt
|
||||
npm run test-node
|
||||
|
Loading…
Reference in New Issue
Block a user