16 lines
474 B
YAML
16 lines
474 B
YAML
stages:
|
|
- test
|
|
|
|
# Test stage
|
|
test:
|
|
stage: test
|
|
image: containers.global.bsf.tools/node:24.5-alpine3.21
|
|
before_script:
|
|
- apk add curl
|
|
script:
|
|
- cd frontend
|
|
- curl -s -u $ARTIFACTORY_USERNAME:$ARTIFACTORY_API_TOKEN -k https://sres.web.boeing.com/artifactory/api/npm/auth > $HOME/.npmrc
|
|
- npm config set registry https://sres.web.boeing.com/artifactory/api/npm/npm-releases
|
|
- npm config set strict-ssl false
|
|
- npm config fix
|
|
- npm install |