fluent-url
Version:
A chainable version of the global URL class
25 lines (21 loc) • 519 B
YAML
# Use generic build mode on Ubuntu
image: Ubuntu
build: off
environment:
CODECOV_TOKEN: '9e387f85-4bec-4fc1-9af8-77ab085995a5'
# Install scripts. (runs after repo cloning)
install:
# install modules
- nvm use 16
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
- npm test
- npm run coverage
- curl -Os https://uploader.codecov.io/latest/linux/codecov
- chmod +x codecov
- ./codecov -t ${CODECOV_TOKEN}