aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.editorconfig4
-rw-r--r--.gitlab-ci.yml19
2 files changed, 23 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
index c2459c1..d058e45 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -14,3 +14,7 @@ trim_trailing_whitespace = true
[*.json]
indent_size = 2
indent_style = space
+
+[*.yml]
+indent_size = 2
+indent_style = space
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..6c8df84
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,19 @@
+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