Skip to content

Commit

Permalink
chore(build): run examples on latest node too
Browse files Browse the repository at this point in the history
  • Loading branch information
mefellows committed Aug 19, 2018
1 parent 11368c8 commit 6b03dd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
npm run dist

# Only run E2E examples on Node 6+
if [[ "${TRAVIS_NODE_VERSION}" =~ ^[6-8] ]]; then
if [[ "${TRAVIS_NODE_VERSION}" =~ ^(6|7|8|9|10) ]]; then
echo "Running e2e examples build for node version ${TRAVIS_NODE_VERSION}"
for i in examples/*; do
echo "------------------------------------------------"
Expand Down

0 comments on commit 6b03dd3

Please sign in to comment.