eslint-config/.gitlab-ci.yml
Valentin Popov 7d84ff8e8e
fix(gitlab): Config npmrc
Signed-off-by: Valentin Popov <info@valentineus.link>
2020-02-14 17:02:50 +04:00

20 lines
388 B
YAML

image: "node:latest"
cache:
paths:
- node_modules/
job-publish:
only:
- tags
before_script:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH"
script:
- yarn install
- yarn run build
- echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc
- npm publish