vanity-eth/.travis.yml
2018-07-03 21:48:08 +02:00

26 lines
No EOL
619 B
YAML

language: node_js
node_js:
- "node"
install: npm i
script:
- npm test
- npm run build
# Remove unwanted files
- find . -maxdepth 1 -type f -not -name 'LICENSE' -not -name 'index.html' -not -name 'README.md' -delete &&
rm -fr node_modules src dist/vanity.js
# Cache busting
- COMMIT=$(git log --format='%h' -n 1) &&
sed -i "s/index.js/index.$COMMIT.js/g" index.html &&
sed -i "s/style.css/style.$COMMIT.css/g" index.html &&
mv dist/index.js dist/index.$COMMIT.js &&
mv dist/style.css dist/style.$COMMIT.css
deploy:
provider: pages
skip-cleanup: true
github-token: $TOKEN
fqdn: vanity-eth.tk