Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-add AWS V3 Instrumentation #421

Merged
merged 9 commits into from
May 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
if: '!matrix.coverage'
run: |
npx lerna bootstrap --hoist
npx lerna run compile
npx lerna run test
shell: bash
env:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
- name: Execute tests with Lerna
run: |
npx lerna bootstrap --hoist
npx lerna run compile
npx lerna run test

- name: Publish package to npm
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ docs
.idea/
.nyc_output/
*.lcov
dist
8 changes: 5 additions & 3 deletions .nycrc.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
{
"all": true,
"include": [
"**/dist/lib/**/*.js"
],
"exclude": [
"**/Gruntfile.js",
"**/.prettierrc.js",
"**/*.d.ts",
"**/sample/**",
"**/test/**",
"**/test-d/**",
"**/test_async/**"
"**/test_async/**",
"**/docs/**"
]
}
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,18 @@ AWS will not:

## Testing from Source

This repo uses [Lerna](https://lernajs.io) to manage multiple packages. To install Lerna:
This repo uses [Lerna](https://lernajs.io) to manage multiple packages. To install Lerna as a CLI:
```
npm install lerna
npm install -g lerna
```
To install devDependencies and peerDependencies for all packages:
```
lerna bootstrap --hoist
```
This repo has a combination of TypeScript and JavaScript source files. To transpile the TypeScript files for testing, run:
```
lerna run compile
```
To run tests for all packages:
```
lerna run test
Expand Down
Loading