ant-design/scripts/test-all.sh

117 lines
2.7 KiB
Bash
Raw Permalink Normal View History

2023-11-22 23:18:05 +08:00
#!/bin/bash
2023-11-22 23:18:05 +08:00
# Full skip argms
# npm run test-all -- --skip-changelog --skip-commit --skip-lint --skip-build --skip-dekko --skip-dist --skip-es --skip-lib --skip-test --skip-node
2023-11-22 23:18:05 +08:00
# Check exist argument
has_arg() {
local term="$1"
local start=0
2023-11-22 23:18:05 +08:00
for arg in "$@"; do
if [ $start -gt 0 ] && [ "$arg" == "$term" ]; then
return 0 # Return 0 if argument exist
fi
2023-11-22 23:18:05 +08:00
start=$((start+1))
done
return 1 # Return 1 if argument not exist
}
if ! has_arg '--skip-changelog' "$@"; then
echo "[TEST ALL] test changelog"
echo "[TEST ALL] test changelog" > ~test-all.txt
tsx ./scripts/check-version-md.ts
else
echo "[TEST ALL] test changelog...skip"
fi
if ! has_arg '--skip-commit' "$@"; then
echo "[TEST ALL] check-commit"
echo "[TEST ALL] check-commit" > ~test-all.txt
npm run check-commit
else
echo "[TEST ALL] check-commit...skip"
fi
if ! has_arg '--skip-lint' "$@"; then
echo "[TEST ALL] lint"
echo "[TEST ALL] lint" > ~test-all.txt
npm run lint
else
echo "[TEST ALL] lint...skip"
fi
if ! has_arg '--skip-build' "$@"; then
2021-02-28 15:10:00 +08:00
echo "[TEST ALL] dist"
2022-11-08 11:34:24 +08:00
echo "[TEST ALL] dist" > ~test-all.txt
2021-02-28 15:10:00 +08:00
npm run dist
2021-02-03 01:27:12 +08:00
2021-02-28 15:10:00 +08:00
echo "[TEST ALL] compile"
2022-11-08 11:34:24 +08:00
echo "[TEST ALL] compile" > ~test-all.txt
2021-02-28 15:10:00 +08:00
npm run compile
else
2023-11-22 23:18:05 +08:00
echo "[TEST ALL] build...skip"
2021-02-28 15:10:00 +08:00
fi
2023-11-22 23:18:05 +08:00
if ! has_arg '--skip-dekko' "$@"; then
echo "[TEST ALL] dekko dist"
echo "[TEST ALL] dekko dist" > ~test-all.txt
node ./tests/dekko/dist.test.js
echo "[TEST ALL] dekko lib and es"
echo "[TEST ALL] dekko lib and es" > ~test-all.txt
node ./tests/dekko/lib-es.test.js
2023-11-22 23:18:05 +08:00
else
echo "[TEST ALL] dekko test...skip"
fi
2023-11-22 23:18:05 +08:00
if ! has_arg '--skip-dist' "$@"; then
echo "[TEST ALL] dist test"
echo "[TEST ALL] dist test" > ~test-all.txt
LIB_DIR=dist npm test -- --bail
else
echo "[TEST ALL] dist test...skip"
fi
2022-11-22 18:18:48 +08:00
if ! has_arg '--skip-dist' "$@"; then
echo "[TEST ALL] dist-min test"
echo "[TEST ALL] dist-min test" > ~test-all.txt
LIB_DIR=dist-min npm test -- --bail
else
echo "[TEST ALL] dist test...skip"
fi
2023-11-22 23:18:05 +08:00
if ! has_arg '--skip-es' "$@"; then
echo "[TEST ALL] test es"
echo "[TEST ALL] test es" > ~test-all.txt
LIB_DIR=es npm test -- --bail
else
echo "[TEST ALL] test es...skip"
fi
2023-11-22 23:18:05 +08:00
if ! has_arg '--skip-lib' "$@"; then
echo "[TEST ALL] test lib"
echo "[TEST ALL] test lib" > ~test-all.txt
LIB_DIR=lib npm test -- --bail
else
echo "[TEST ALL] test lib...skip"
fi
2022-11-22 18:18:48 +08:00
2023-11-22 23:18:05 +08:00
if ! has_arg '--skip-test' "$@"; then
echo "[TEST ALL] test"
echo "[TEST ALL] test" > ~test-all.txt
npm test -- --bail
else
echo "[TEST ALL] test...skip"
fi
2023-11-22 23:18:05 +08:00
if ! has_arg '--skip-node' "$@"; then
echo "[TEST ALL] test node"
echo "[TEST ALL] test node" > ~test-all.txt
npm run test:node -- --bail
2023-11-22 23:18:05 +08:00
else
echo "[TEST ALL] test node...skip"
fi