Wercker

Wercker logo [Site](https://app.wercker.com/) | [Example](examples/wercker.yml)

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.

Last updated

Was this helpful?