From 656bc470f7f2158eeb85b974dc200a68418558f1 Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Fri, 14 Feb 2020 16:51:29 +0400 Subject: feat(gitlab): Initial CI config Signed-off-by: Valentin Popov --- .gitlab-ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitlab-ci.yml (limited to '.gitlab-ci.yml') 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 -- cgit v1.2.3