1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-05-28 23:41:32 +00:00
8bitworkshop/.travis.yml

14 lines
352 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:
2020-07-13 22:15:48 +00:00
- "14.3.0"
script:
- npm run build
- npm test