Skip to content

Commit 6bcf322

Browse files
Run prettier on CONTRIBUTING.md and README.md
1 parent 3714f91 commit 6bcf322

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ npm run test
4141

4242
### 6. Build
4343

44-
It is necessary to compile the code before it can be used by GitHub Actions. We check in the `node_modules` to provide runtime dependencies to the system using the Action, so be careful not to `git add` all the development dependencies you might have under your local `node_modules`.
44+
It is necessary to compile the code before it can be used by GitHub Actions. We check in the `node_modules` to provide runtime dependencies to the system using the Action, so be careful not to `git add` all the development dependencies you might have under your local `node_modules`.
4545
Remember to run these commands before committing any code changes:
4646

4747
```

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ If you want to pin a major or minor version you can use the `.x` wildcard:
2929
- name: Install Protoc
3030
uses: arduino/setup-protoc@v1
3131
with:
32-
version: '3.x'
32+
version: "3.x"
3333
```
3434

3535
You can also require to include releases marked as `pre-release` in Github using the `include-pre-releases` flag (the dafault value for this flag is `false`)
@@ -38,7 +38,7 @@ You can also require to include releases marked as `pre-release` in Github using
3838
- name: Install Protoc
3939
uses: arduino/setup-protoc@v1
4040
with:
41-
version: '3.x'
41+
version: "3.x"
4242
include-pre-releases: true
4343
```
4444

@@ -48,7 +48,7 @@ To pin the exact version:
4848
- name: Install Protoc
4949
uses: arduino/setup-protoc@v1
5050
with:
51-
version: '3.9.1'
51+
version: "3.9.1"
5252
```
5353

5454
The action queries the GitHub API to fetch releases data, to avoid rate limiting,
@@ -61,13 +61,12 @@ pass the default token with the `repo-token` variable:
6161
repo-token: ${{ secrets.GITHUB_TOKEN }}
6262
```
6363

64-
6564
## Enable verbose logging for a pipeline
65+
6666
Additional log events with the prefix ::debug:: can be enabled by setting the secret `ACTIONS_STEP_DEBUG` to `true`.
6767

6868
See [step-debug-logs](https://github.com/actions/toolkit/blob/master/docs/action-debugging.md#step-debug-logs) for reference.
6969

70-
7170
## Security
7271

7372
If you think you found a vulnerability or other security-related bug in this project, please read our

0 commit comments

Comments
 (0)