language: node_js
dist: focal
node_js:
  - 18

env:
  global:
    - WS_APIKEY=${WS_APIKEY}
    - WS_USERKEY=${WS_USERKEY}
    - WS_PRODUCTNAME=${WS_PRODUCTNAME}
    - WS_PROJECTNAME=razeedeploy-core
    - WS_WSS_URL=https://ibmets.whitesourcesoftware.com/agent

script:
  - if [ "${TRAVIS_PULL_REQUEST}" != "false" ]; then npx audit-ci --config audit-ci.json --only=prod; else npx audit-ci --config audit-ci.json || true; fi
  - npm run lint
  - npm test
  - if [ -n "${TRAVIS_TAG}" ]; 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 GITHUB_TOKEN="${GITHUB_TOKEN20250116}"
  - 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:
  - 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]+$
