Skip to content

Commit 8889eca

Browse files
authored
avoid logging headers in errors, package updates, npm workaround (#401)
1 parent c13f8e7 commit 8889eca

File tree

3 files changed

+123
-109
lines changed

3 files changed

+123
-109
lines changed

.travis.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
language: node_js
2+
dist: focal
23
node_js:
3-
- "16"
4+
- 18
45

56
before_install:
67
- export WS_APIKEY=${WS_APIKEY}
@@ -17,6 +18,10 @@ script:
1718
# Perform UA scan on non-PR builds
1819
- 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
1920

21+
before_deploy:
22+
# Use npm v9 for deployments (v10 has problems with authentication with api_key)
23+
- npm install -g npm@9
24+
2025
deploy:
2126
- provider: npm
2227
email: "${NPMJS_EMAIL}"

0 commit comments

Comments
 (0)