aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorMichał Gołębiowski <m.goleb@gmail.com>2015-09-11 21:35:10 +0200
committerMichał Gołębiowski <m.goleb@gmail.com>2015-09-11 21:35:22 +0200
commit06320c88af5be9cd937917282deb6eb4c4ad0443 (patch)
tree17dae7b8a36bab9ba9b6635449f35b2f5955bae6 /.travis.yml
parent250a1990baa571de60325ab2c52eabb399c4cf9e (diff)
downloadjquery-06320c88af5be9cd937917282deb6eb4c4ad0443.tar.gz
jquery-06320c88af5be9cd937917282deb6eb4c4ad0443.zip
Build: Use double quotes in .travis.yml
.travis.yml used single quotes which is inconsistent with what we use in most other files. Also, the file was missing an empty line at the end.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 4 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index bbbd62b97..0af8ea1c1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,6 +1,7 @@
language: node_js
sudo: false
node_js:
-- '0.10'
-- '0.12'
-- '4'
+- "0.10"
+- "0.12"
+- "4"
+