Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 96abf42

Browse files
committed
chore(travis): don't call grunt:package for unit tests
1 parent 012c431 commit 96abf42

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

scripts/travis/before_build.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@ fi
1111

1212
npm install -g grunt-cli
1313

14-
if [ $JOB != "ci-checks" ]; then
15-
grunt package
14+
if [ $JOB != "ci-checks"]; then
15+
if [ $JOB != "unit" ]; then
16+
# unit tests test against unminified code
17+
grunt package
18+
fi
1619
echo "wait_for_browser_provider"
1720
./scripts/travis/wait_for_browser_provider.sh
1821
fi

0 commit comments

Comments
 (0)