mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2025-12-15 18:56:18 +00:00
21 lines
361 B
YAML
21 lines
361 B
YAML
image: registry.gitlab.com/openstapps/projectmanagement/node
|
|
|
|
stages:
|
|
- test
|
|
- publish
|
|
|
|
prettier config file:
|
|
stage: test
|
|
script:
|
|
- npm test
|
|
|
|
package:
|
|
tags:
|
|
- secrecy
|
|
stage: publish
|
|
script:
|
|
- echo "//registry.npmjs.org/:_authToken=$NPM_AUTH_TOKEN" > ~/.npmrc
|
|
- npm publish --access=public
|
|
only:
|
|
- /^v[0-9]+\.[0-9]+\.[0-9]+$/
|