2024-02-02 18:56:46 +00:00
|
|
|
image: node:latest
|
|
|
|
|
|
|
|
stages:
|
|
|
|
- testing
|
|
|
|
- deploy
|
|
|
|
|
|
|
|
test:
|
|
|
|
stage: testing
|
|
|
|
script:
|
|
|
|
- npm i
|
|
|
|
- npm run build
|
|
|
|
- npm run test
|
|
|
|
|
|
|
|
publish-npm:
|
|
|
|
stage: deploy
|
|
|
|
needs: ['test']
|
2024-02-02 18:59:02 +00:00
|
|
|
rules:
|
2024-02-03 23:04:54 +00:00
|
|
|
- if: $CI_COMMIT_BRANCH == "stable"
|
2024-02-02 18:59:02 +00:00
|
|
|
changes:
|
|
|
|
paths:
|
|
|
|
- package.json
|
2024-02-02 18:56:46 +00:00
|
|
|
script:
|
2024-02-02 19:40:41 +00:00
|
|
|
- echo "@transfem-org:registry=https://${CI_SERVER_HOST}/api/v4/projects/2/packages/npm/" > .npmrc
|
2024-04-03 09:19:36 +00:00
|
|
|
- echo "//${CI_SERVER_HOST}/api/v4/projects/2/packages/npm/:_authToken=${CI_JOB_TOKEN}" >> .npmrc
|
2024-02-02 18:56:46 +00:00
|
|
|
- npm i
|
|
|
|
- npm run build
|
|
|
|
- npm publish
|