Skip to content

Commit 22f32ba

Browse files
committed
Fix cloudwatch metrics script
1 parent 63c6333 commit 22f32ba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/browser-compatibility-test-previous-major-version.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -318,8 +318,8 @@ jobs:
318318
aws-region: us-east-1
319319
- name: Send Metric to CloudWatch
320320
run: |
321-
node -e "
322321
npm install @aws-sdk/client-cloudwatch
322+
node -e "
323323
const { CloudWatchClient, PutMetricDataCommand } = require('@aws-sdk/client-cloudwatch');
324324
const client = new CloudWatchClient({ region: process.env.REGION });
325325

.github/workflows/browser-compatibility-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -291,8 +291,8 @@ jobs:
291291
aws-region: us-east-1
292292
- name: Send Metric to CloudWatch
293293
run: |
294+
npm install @aws-sdk/client-cloudwatch
294295
node -e "
295-
npm install @aws-sdk/client-cloudwatch
296296
const { CloudWatchClient, PutMetricDataCommand } = require('@aws-sdk/client-cloudwatch');
297297
const client = new CloudWatchClient({ region: process.env.REGION });
298298

0 commit comments

Comments
 (0)