We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a72730 commit fdfeea0Copy full SHA for fdfeea0
ci/input_files/build.yaml.tpl
@@ -14,6 +14,7 @@ stages:
14
- apt-get update
15
- apt-get install nodejs -y
16
- npm install --global yarn
17
+ - npm install --global tsc
18
19
.node-before-script: &node-before-script
20
- echo 'yarn-offline-mirror ".yarn-cache/"' >> .yarnrc
ci/publish_npm.sh
@@ -5,6 +5,8 @@
5
# This product includes software developed at Datadog (https://www.datadoghq.com/).
6
# Copyright 2023 Datadog, Inc.
7
8
+set -e
9
+
10
NPM_TOKEN=$(aws ssm get-parameter \
11
--region us-east-1 \
12
--name "ci.datadog-lambda-js.npm-token" \
@@ -28,4 +30,4 @@ if [ -d "./dist" ]; then
28
30
fi
29
31
npm run build
32
cp ./dist/handler.cjs ./dist/handler.js
-npm publish
33
+npm publish
0 commit comments