mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 20:19:44 +08:00
10 lines
238 B
Bash
10 lines
238 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
npm run lint && \
|
||
|
npm run dist && \
|
||
|
node ./tests/dekko/dist.test.js && \
|
||
|
npm run compile && \
|
||
|
node ./tests/dekko/lib.test.js && \
|
||
|
npm test -- --coverage -w $MAX_WORKERS && \
|
||
|
npm test -- --config .jest.node.json -w $MAX_WORKERS
|