0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05:00
verdaccio/circle.yml

59 lines
1.5 KiB
YAML
Raw Normal View History

2017-07-09 03:26:06 -05:00
machine:
environment:
YARN_VERSION: 1.3.2
2017-07-09 03:26:06 -05:00
PATH: "${PATH}:${HOME}/.yarn/bin:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
node:
2017-12-22 15:31:47 -05:00
version: 9
2017-07-09 03:26:06 -05:00
dependencies:
pre:
- 'echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc'
2017-07-09 03:26:06 -05:00
- |
if [[ ! -e ~/.yarn/bin/yarn || $(yarn --version) != "${YARN_VERSION}" ]]; then
curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version $YARN_VERSION
fi
- nvm install 6
2017-12-22 15:31:47 -05:00
- nvm install 8
2017-07-09 03:26:06 -05:00
cache_directories:
- ~/.yarn
- ~/.cache/yarn
- "node_modules"
override:
- yarn install --no-progress
test:
override:
- yarn run pre:ci
2017-07-09 03:26:06 -05:00
- nvm alias default 6
2017-11-01 11:47:20 -05:00
- yarn run test
2017-07-09 03:26:06 -05:00
- nvm alias default 8
2017-11-01 11:47:20 -05:00
- yarn run test
2017-12-04 01:04:10 -05:00
- nvm alias default 9
- yarn run test
deployment:
production:
2018-01-07 13:16:44 -05:00
tag: /(v)?[0-9]+(\.[0-9]+)*/
commands:
- ./scripts/publish.sh
2018-01-07 13:16:44 -05:00
alpha-release:
tag: /.*-alpha.*/
commands:
- ./scripts/alpha-publish.sh
beta-release:
tag: /.*-beta.*/
commands:
- ./scripts/beta-publish.sh
website:
branch: master
commands:
- git config --global user.email "verdacciobot@users.noreply.github.com"
- git config --global user.name "Verdaccio bot 🤖 for Deployments"
- echo "machine github.com login verdacciobot password $GITHUB_TOKEN" > ~/.netrc
2018-01-09 21:49:12 -05:00
- cd website && yarn install && GIT_USER=verdacciobot USE_SSH=false yarn run publish-gh-pages
general:
branches:
ignore:
- gh-pages
2018-01-07 11:58:22 -05:00
- l10n_master
2018-01-09 21:52:19 -05:00
- greenkeeper*
- /release\/.*/