feat(gitlab): Initial CI config
Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
parent
59d30497f3
commit
656bc470f7
@ -14,3 +14,7 @@ trim_trailing_whitespace = true
|
||||
[*.json]
|
||||
indent_size = 2
|
||||
indent_style = space
|
||||
|
||||
[*.yml]
|
||||
indent_size = 2
|
||||
indent_style = space
|
||||
|
18
.gitlab-ci.yml
Normal file
18
.gitlab-ci.yml
Normal file
@ -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
|
@ -204,5 +204,6 @@ src/
|
||||
.editorconfig
|
||||
.eslintrc.json
|
||||
.gitignore
|
||||
.gitlab-ci.yml
|
||||
rollup.config.js
|
||||
tsconfig.json
|
||||
|
Loading…
x
Reference in New Issue
Block a user