Skip to content

Commit

Permalink
Rename lint suite
Browse files Browse the repository at this point in the history
  • Loading branch information
kpuputti committed May 20, 2016
1 parent 0bf3d09 commit d1a89c8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -16,7 +16,7 @@ env:
- SUITE="rspec"
- SUITE="rubocop"
- SUITE="cucumber"
- SUITE="eslint"
- SUITE="lint"
global:
- BUNDLE_ARCHIVE="travis-bundle-cache"
- AWS_S3_REGION="us-east-1"
Expand Down
2 changes: 1 addition & 1 deletion travis/before_install.sh
Expand Up @@ -6,7 +6,7 @@ echo "Running before_install"

# Assert that the given SUITE is a known one
case "$SUITE" in
rspec|rubocop|cucumber|eslint)
rspec|rubocop|cucumber|lint)
echo "SUITE: ${SUITE}"
;;
*)
Expand Down
2 changes: 1 addition & 1 deletion travis/install.sh
Expand Up @@ -13,7 +13,7 @@ case "$SUITE" in
esac

case "$SUITE" in
cucumber|eslint)
cucumber|lint)
echo "Installing and selecting Node.js version with nvm for suite: $SUITE"
# shellcheck source=/dev/null
. "$HOME/.nvm/nvm.sh"
Expand Down
2 changes: 1 addition & 1 deletion travis/script.sh
Expand Up @@ -31,7 +31,7 @@ then
(cd client && npm run start-phantomjs) &
PHANTOMJS=true bundle exec cucumber -ptravis 2>&1
exit
elif [ "$SUITE" = "eslint" ]
elif [ "$SUITE" = "lint" ]
then
cd client && npm run lint 2>&1
exit
Expand Down

0 comments on commit d1a89c8

Please sign in to comment.