mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 20:20:00 +08:00
f6c0e69af5
* Cleanup npm scripts * Lint fix * Don't need ignore js files * Upgrade jest * Add components index.tsx test
10 lines
238 B
Bash
Executable File
10 lines
238 B
Bash
Executable File
#!/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
|