Travis CI

Travis CI logo [Site](https://travis-ci.com/) | [Example](examples/.travis.yml)

Create file config:

touch .travis.yml

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

Example Projects

If you use this CI format, enter your project here.

Last updated

Was this helpful?