Skip to content

Latest commit

 

History

History
48 lines (36 loc) · 900 Bytes

WERCKER.md

File metadata and controls

48 lines (36 loc) · 900 Bytes

Wercker



Create file config:

touch wercker.yml

Copy the content and paste in wercker.yml

box: node

build:
  steps:
    - script:
      name: install dependencies
      code: |
        yarn install

    - script:
      name: build project
      code: |
        yarn build

    - script:
      name: publish
      code: |
        echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" >> $HOME/.npmrc 2> /dev/null
        npm publish

Example Projects

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