You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 28, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+14-15Lines changed: 14 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -3,36 +3,35 @@
3
3
### Getting started
4
4
5
5
1. First, [fork](https://help.github.com/en/articles/fork-a-repo) the repo to your own github account and clone it.
6
-
2. Install dependencies: `npm install`
6
+
2. Install dependencies: `npm install && npm run packages-install`
7
7
8
8
### Running the tests
9
9
10
10
#### Unit tests
11
11
12
-
```bash
13
-
npm test
14
-
```
15
-
16
-
or in watch mode:
12
+
I recommend testing the specific package in the monorepo that you are working with. For example:
17
13
18
14
```bash
19
-
npm test -- --watch
15
+
npm test -- lambda-at-edge/
20
16
```
21
17
22
-
#### Integration
18
+
In watch mode:
23
19
24
20
```bash
25
-
npm run integration
21
+
npm test -- --watch lambda-at-edge/
26
22
```
27
23
28
-
#### Testing the plugin on a serverless application
24
+
#### Deploying to AWS and testing your changes
29
25
30
-
Configure the app's `serverless.yml`to use your fork of the plugin as documented [here](https://serverless.com/framework/docs/providers/aws/guide/plugins#service-local-plugin).
26
+
First, create your own test serverless component app and in the `serverless.yml`point the `component` field to your fork:
0 commit comments