vanity-eth/.travis.yml
Boris Kubiak 60a8ed7af2 Fix build
2020-10-14 17:33:38 +02:00

26 lines
No EOL
627 B
YAML

language: node_js
node_js:
- "lts/*"
install: npm i
script:
- npm test
- npm run build:deploy
# 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