Skip to content
Merged
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
11 changes: 11 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -1465,6 +1465,17 @@ have to disable the built-in rebuild functionality of `lerna run test`:
$ CDK_TEST_BUILD=false lr test
```

#### The check-lfs Github action fails on my PR

This happens if your PR has files that should have been a Git LFS pointer but were not. You should verify
that you have Git LFS installed with `git lfs`, if not you can install it with `git lfs install`.
Once Git LFS is installed, use the following command:

```shell
$ git lfs migrate import --no-rewrite <path to files that make the gh action fail>
```
This will create a new commit that you can push to your branch to make the Github action pass.

## Debugging

### Connecting the VS Code Debugger
Expand Down
Loading