mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 11:08:45 +08:00
31fa14a742
* Update lighthouse-ci.yml * Create lighthouserc.js * Update index.js * Add url * fix url * fix assertions
25 lines
618 B
Bash
Executable File
25 lines
618 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cho "[TEST ALL] check-commit" && \
|
|
npm run check-commit
|
|
echo "[TEST ALL] lint" && \
|
|
npm run lint && \
|
|
echo "[TEST ALL] dist" && \
|
|
npm run dist && \
|
|
echo "[TEST ALL] dekko dist" && \
|
|
node ./tests/dekko/dist.test.js && \
|
|
echo "[TEST ALL] dist test" && \
|
|
LIB_DIR=dist 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
|