File tree Expand file tree Collapse file tree 2 files changed +29
-30
lines changed Expand file tree Collapse file tree 2 files changed +29
-30
lines changed Original file line number Diff line number Diff line change
1
+ ## Development
2
+
3
+ To work on the codebase you have to install all the dependencies:
4
+
5
+ ``` sh
6
+ # npm install
7
+ ```
8
+
9
+ To run the tests:
10
+
11
+ ``` sh
12
+ # npm run test
13
+ ```
14
+
15
+ ## Enable verbose logging for a pipeline
16
+ Additional log events with the prefix ::debug:: can be enabled by setting the secret ` ACTIONS_STEP_DEBUG ` to ` true ` .
17
+
18
+ See [ step-debug-logs] ( https://github.com/actions/toolkit/blob/master/docs/action-debugging.md#step-debug-logs ) for reference.
19
+
20
+ ## Release
21
+
22
+ To release a new version of the Action the workflow should be the following:
23
+
24
+ 1 . ` npm install ` to install the dependencies.
25
+ 1 . ` npm run test ` to see everything works as expected.
26
+ 1 . ` npm run build ` to build the Action under the ` ./lib ` folder.
27
+ 1 . ` npm run pack ` to package for distribution
28
+ 1 . ` git add src dist ` to check in the code that matters.
29
+ 1 . open a PR and request a review.
Original file line number Diff line number Diff line change @@ -56,33 +56,3 @@ If you think you found a vulnerability or other security-related bug in this pro
56
56
Thank you!
57
57
58
58
e-mail contact : security@arduino.cc
59
-
60
- # # Development
61
-
62
- To work on the codebase you have to install all the dependencies :
63
-
64
- ` ` ` sh
65
- # npm install
66
- ` ` `
67
-
68
- To run the tests :
69
-
70
- ` ` ` sh
71
- # npm run test
72
- ` ` `
73
-
74
- # # Enable verbose logging for a pipeline
75
- Additional log events with the prefix ::debug: : can be enabled by setting the secret `ACTIONS_STEP_DEBUG` to `true`.
76
-
77
- See [step-debug-logs](https://github.com/actions/toolkit/blob/master/docs/action-debugging.md#step-debug-logs) for reference.
78
-
79
- # # Release
80
-
81
- To release a new version of the Action the workflow should be the following :
82
-
83
- 1. `npm install` to install the dependencies.
84
- 1. `npm run test` to see everything works as expected.
85
- 1. `npm run build` to build the Action under the `./lib` folder.
86
- 1. `npm run pack` to package for distribution
87
- 1. `git add src dist` to check in the code that matters.
88
- 1. open a PR and request a review.
You can’t perform that action at this time.
0 commit comments