Skip to content

Commit c94bc40

Browse files
author
Sora Morimoto
authored
Remove unnecessary trailing spaces (actions#474)
1 parent 8ae8acc commit c94bc40

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The GitHub Actions ToolKit provides a set of packages to make creating actions e
1919

2020
## Packages
2121

22-
:heavy_check_mark: [@actions/core](packages/core)
22+
:heavy_check_mark: [@actions/core](packages/core)
2323

2424
Provides functions for inputs, outputs, results, logging, secrets and variables. Read more [here](packages/core)
2525

@@ -28,7 +28,7 @@ $ npm install @actions/core
2828
```
2929
<br/>
3030

31-
:runner: [@actions/exec](packages/exec)
31+
:runner: [@actions/exec](packages/exec)
3232

3333
Provides functions to exec cli tools and process output. Read more [here](packages/exec)
3434

@@ -46,7 +46,7 @@ $ npm install @actions/glob
4646
```
4747
<br/>
4848

49-
:pencil2: [@actions/io](packages/io)
49+
:pencil2: [@actions/io](packages/io)
5050

5151
Provides disk i/o functions like cp, mv, rmRF, find etc. Read more [here](packages/io)
5252

@@ -55,18 +55,18 @@ $ npm install @actions/io
5555
```
5656
<br/>
5757

58-
:hammer: [@actions/tool-cache](packages/tool-cache)
58+
:hammer: [@actions/tool-cache](packages/tool-cache)
5959

6060
Provides functions for downloading and caching tools. e.g. setup-* actions. Read more [here](packages/tool-cache)
6161

62-
See @actions/cache for caching workflow dependencies.
62+
See @actions/cache for caching workflow dependencies.
6363

6464
```bash
6565
$ npm install @actions/tool-cache
6666
```
6767
<br/>
6868

69-
:octocat: [@actions/github](packages/github)
69+
:octocat: [@actions/github](packages/github)
7070

7171
Provides an Octokit client hydrated with the context that the current action is being run in. Read more [here](packages/github)
7272

@@ -75,7 +75,7 @@ $ npm install @actions/github
7575
```
7676
<br/>
7777

78-
:floppy_disk: [@actions/artifact](packages/artifact)
78+
:floppy_disk: [@actions/artifact](packages/artifact)
7979

8080
Provides functions to interact with actions artifacts. Read more [here](packages/artifact)
8181

@@ -84,7 +84,7 @@ $ npm install @actions/artifact
8484
```
8585
<br/>
8686

87-
:dart: [@actions/cache](packages/cache)
87+
:dart: [@actions/cache](packages/cache)
8888

8989
Provides functions to cache dependencies and build outputs to improve workflow execution time. Read more [here](packages/cache)
9090

@@ -115,7 +115,7 @@ Problem Matchers are a way to scan the output of actions for a specified regex p
115115

116116
:warning: [Proxy Server Support](docs/proxy-support.md)
117117

118-
Self-hosted runners can be configured to run behind proxy servers.
118+
Self-hosted runners can be configured to run behind proxy servers.
119119
<br/>
120120
<br/>
121121

@@ -132,23 +132,23 @@ Illustrates how to create a simple hello world javascript action.
132132
<br/>
133133

134134
<h3><a href="https://github.com/actions/javascript-action">JavaScript Action Walkthrough</a></h3>
135-
135+
136136
Walkthrough and template for creating a JavaScript Action with tests, linting, workflow, publishing, and versioning.
137137

138138
```javascript
139139
async function run() {
140-
try {
140+
try {
141141
const ms = core.getInput('milliseconds');
142142
console.log(`Waiting ${ms} milliseconds ...`)
143143
...
144144
```
145145
```javascript
146146
PASS ./index.test.js
147-
✓ throws invalid number
148-
✓ wait 500 ms
147+
✓ throws invalid number
148+
✓ wait 500 ms
149149
✓ test runs
150150

151-
Test Suites: 1 passed, 1 total
151+
Test Suites: 1 passed, 1 total
152152
Tests: 3 passed, 3 total
153153
```
154154
<br/>
@@ -168,11 +168,11 @@ async function run() {
168168
```
169169
```javascript
170170
PASS ./index.test.js
171-
✓ throws invalid number
172-
✓ wait 500 ms
171+
✓ throws invalid number
172+
✓ wait 500 ms
173173
✓ test runs
174174

175-
Test Suites: 1 passed, 1 total
175+
Test Suites: 1 passed, 1 total
176176
Tests: 3 passed, 3 total
177177
```
178178
<br/>
@@ -205,7 +205,7 @@ const myInput = core.getInput('myInput');
205205
core.debug(`Hello ${myInput} from inside a container`);
206206

207207
const context = github.context;
208-
console.log(`We can even get context data, like the repo: ${context.repo.repo}`)
208+
console.log(`We can even get context data, like the repo: ${context.repo.repo}`)
209209
```
210210
<br/>
211211

0 commit comments

Comments
 (0)