We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3eb559c commit 301f869Copy full SHA for 301f869
.gitlab-ci.yml
@@ -17,9 +17,21 @@ build site:
17
unit test:
18
stage: test
19
script:
20
+ - npm run lint
21
- npm run test
22
artifacts:
23
paths:
24
- dist/
25
- node_modules/
- - package.json
26
+ - package.json
27
+
28
29
+publish:
30
+ stage: deploy
31
+ only:
32
+ - tags
33
+ - triggers
34
+ script:
35
+ - npm run build
36
+ - echo '//registry.npmjs.org/:_authToken=${NPM_TOKEN}'>.npmrc
37
+ - npm publish --dry-run
0 commit comments