Skip to content

Commit

Permalink
avoid logging headers in errors, package updates, npm workaround (#401)
Browse files Browse the repository at this point in the history
  • Loading branch information
carrolp authored Dec 7, 2023
1 parent c13f8e7 commit 8889eca
Show file tree
Hide file tree
Showing 3 changed files with 123 additions and 109 deletions.
7 changes: 6 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
language: node_js
dist: focal
node_js:
- "16"
- 18

before_install:
- export WS_APIKEY=${WS_APIKEY}
Expand All @@ -17,6 +18,10 @@ script:
# 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:
# Use npm v9 for deployments (v10 has problems with authentication with api_key)
- npm install -g npm@9

deploy:
- provider: npm
email: "${NPMJS_EMAIL}"
Expand Down
Loading

0 comments on commit 8889eca

Please sign in to comment.