๐Ÿ“ฆ brijeshb42 / medium-draft

๐Ÿ“„ .travis.yml ยท 18 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18language: node_js
node_js:
  - "12"
install: yarn
cache: yarn
before_deploy: "yarn fullbuild"
script:
  - npm test
after_success:
  - bash <(curl -s https://codecov.io/bash)
deploy:
  provider: npm
  script: "npm publish"
  skip_cleanup: true
  email: "$NPM_EMAIL"
  api_key: "$NPM_TOKEN"