File tree Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change
1
+ version : 0.2
2
+
3
+ env :
4
+ variables :
5
+ AWS_REGION : us-west-2
6
+ parameter-store :
7
+ AWS_ACCESS_KEY_ID : AccessKey
8
+ AWS_SECRET_ACCESS_KEY : SecretKey
9
+ phases :
10
+ install :
11
+ runtime-versions :
12
+ nodejs : 14
13
+ commands :
14
+ # start docker
15
+ # https://docs.aws.amazon.com/codebuild/latest/userguide/sample-docker-custom-image.html#sample-docker-custom-image-files
16
+ - nohup /usr/local/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://127.0.0.1:2375 --storage-driver=overlay2&
17
+ - timeout 15 sh -c "until docker info; do echo .; sleep 1; done"
18
+ - npm install
19
+ build :
20
+ commands :
21
+ - npm run lint
22
+ - npm run build
23
+ - npm run test
24
+ - npm run integ
25
+ # verify the current changes do not break the example tests
26
+ - npm link && cd examples/testing && npm link aws-embedded-metrics && npm i && npm test
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " aws-embedded-metrics" ,
3
- "version" : " 2.0.0 " ,
3
+ "version" : " 2.0.1 " ,
4
4
"description" : " AWS Embedded Metrics Client Library" ,
5
5
"main" : " lib/index.js" ,
6
6
"types" : " lib/index.d.ts" ,
You can’t perform that action at this time.
0 commit comments