Copy the content and paste in .travis.yml
language: node_js
node_js:
- "10"
cache: yarn
install: yarn
script:
- echo "Not found tests"
jobs:
include:
- stage: npm release
if: tag IS present
node_js: "10"
script: yarn build
deploy:
provider: npm
api_key: $NPM_TOKEN
skip_cleanup: true
on:
tags: true
If you use this CI format, enter your project here.