mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
13 lines
251 B
Bash
Executable File
13 lines
251 B
Bash
Executable File
#!/bin/sh
|
|
|
|
npm run lint && \
|
|
npm run dist && \
|
|
node ./tests/dekko/dist.test.js && \
|
|
LIB_DIR=dist npm test && \
|
|
npm run compile && \
|
|
node ./tests/dekko/lib.test.js && \
|
|
LIB_DIR=es npm test && \
|
|
LIB_DIR=lib npm test && \
|
|
npm test && \
|
|
npm run test-node
|