edifact_orders_iso_16033
Version:
parser for EDIFACT ORDERS ISO 16033 Ophthalmic optics and instruments
32 lines (30 loc) • 602 B
YAML
default:
image: node:latest
stages:
- "test"
- "deploy"
test:
stage: test
script:
- npm install
- npm run testjunit
artifacts:
paths:
- test-results.xml
reports:
junit: test-results.xml
deploy:
stage: deploy
only:
refs:
- master
script:
- npm install
- npm run testjunit
- echo '//registry.npmjs.org/:_authToken=${NPM_TOKEN}'>.npmrc
- npm publish
artifacts:
paths:
- test-results.xml
reports:
junit: test-results.xml