Skip to content

Commit 7a840ff

Browse files
v0.7.0
1 parent 69ad28e commit 7a840ff

4 files changed

Lines changed: 3502 additions & 4459 deletions

File tree

.gitlab-ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
image: node:latest
2+
3+
stages:
4+
- prepare
5+
- publish
6+
7+
prepare:
8+
stage: prepare
9+
script:
10+
- npm install
11+
- npm run lint
12+
13+
publish:
14+
stage: publish
15+
only:
16+
- master
17+
script:
18+
- npm install -g npm-login-cli
19+
- npm-login-cli https://registry.npmjs.org/ $NPM_USER $NPM_PASSWORD $NPM_EMAIL
20+
- npm whoami
21+
- npm install
22+
- npm run build
23+
- npm publish --access public

0 commit comments

Comments
 (0)