Newer
Older
BUNDLED_JSON_FILE: ./public/api.json
cache:
paths:
- ./node_modules
bundle_and_test:
stage: bundle
before_script:
- apt-get update
- apt-get install -y curl
- curl -sL https://deb.nodesource.com/setup_10.x | bash -
- apt-get install -y nodejs
- npm install -g @apidevtools/swagger-cli
script:
- mkdir public
- swagger-cli bundle -t json $API_ROOT_FILE > $BUNDLED_JSON_FILE
- swagger-cli validate $BUNDLED_JSON_FILE
artifacts:
paths:
- public
expire_in: 2 days
only:
# test_api:
# stage: test
# script:
# - pip3 install tox
# - tox
- apt-get update
- apt-get install -y curl
- curl -sL https://deb.nodesource.com/setup_10.x | bash -
- apt-get install -y nodejs
- npm install swagger-ui-dist@3.22.1
script:
- cp -rp node_modules/swagger-ui-dist/* ./public
- 'sed -i "s@.*url.*@url: \"api.json\",@" ./public/index.html'
artifacts:
paths:
- public
expire_in: 2 days
only: