diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-14 15:51:29 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-14 15:51:29 +0300 |
commit | 656bc470f7f2158eeb85b974dc200a68418558f1 (patch) | |
tree | 681a07110855bfad9ea3ead517f9fad315f943aa /.gitlab-ci.yml | |
parent | 59d30497f3e897a3aa209fe47ddcc0b0447b7fd2 (diff) | |
download | eslint-config-656bc470f7f2158eeb85b974dc200a68418558f1.tar.xz eslint-config-656bc470f7f2158eeb85b974dc200a68418558f1.zip |
feat(gitlab): Initial CI config
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..2df8d31 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,18 @@ +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 + - NPM_TOKEN=$(printenv TOKEN) npm publish |