Skip to content

Commit 8303782

Browse files
committed
build: update release script
1 parent a7615ef commit 8303782

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

Diff for: build/release.sh

+7-5
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,13 @@ echo
1212
if [[ $REPLY =~ ^[Yy]$ ]]; then
1313
echo "Releasing $VERSION ..."
1414

15-
npm run lint
16-
npm run flow
17-
npm run test:cover
18-
npm run test:e2e
19-
npm run test:ssr
15+
if [[ -z $SKIP_TESTS ]]; then
16+
npm run lint
17+
npm run flow
18+
npm run test:cover
19+
npm run test:e2e
20+
npm run test:ssr
21+
fi
2022

2123
if [[ -z $SKIP_SAUCE ]]; then
2224
export SAUCE_BUILD_ID=$VERSION:`date +"%s"`

0 commit comments

Comments
 (0)