UNPKG

@razee/request-util

Version:

A set of utilities to facilitate migrating from the deprecated request library to a supported library such as Axios

36 lines (30 loc) 1.22 kB
language: node_js node_js: - 18 env: global: - WS_APIKEY=${WS_APIKEY} - WS_USERKEY=${WS_USERKEY} - WS_PRODUCTNAME=${WS_PRODUCTNAME} - WS_PROJECTNAME=Request-util - WS_WSS_URL=https://ibmets.whitesourcesoftware.com/agent script: - if [ "${TRAVIS_PULL_REQUEST}" != "false" ]; then npx audit-ci --config audit-ci.json; else npx audit-ci --config audit-ci.json || true; fi - npm run lint - npm test - if [[ "${TRAVIS_TAG}" =~ ^[0-9]+\.[0-9]+\.[0-9]+(-rc\.[0-9]+)?$ ]]; then npm version --no-git-tag-version "${TRAVIS_TAG}"; fi # Perform UA scan on non-PR builds - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then curl -LJO https://unified-agent.s3.amazonaws.com/wss-unified-agent.jar; java -jar wss-unified-agent.jar -d . || echo "UA Scan Error occurred"; fi before_deploy: - export NPMJS_API_KEY="${NPMJS_API_KEY_20250116}" # Use npm v9 for deployments (v10 has problems with authentication with api_key) - npm install -g npm@9 deploy: # Publish npm package when tagged as x.y.z release - provider: npm email: "${NPMJS_EMAIL}" api_key: "${NPMJS_API_KEY}" skip_cleanup: true on: tags: true condition: ${TRAVIS_TAG} =~ ^[0-9]+\.[0-9]+\.[0-9]+$