8bitworkshop/.travis.yml

11 lines
311 B
YAML
Raw Normal View History

# Handle git submodules yourself
git:
submodules: false
# Use sed to replace the SSH URL with the public URL, then initialize submodules
before_install:
- sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
- git submodule update --init --recursive
language: node_js
2017-01-12 03:33:05 +00:00
node_js:
- "6.5.0"