Skip to content

Commit b22ccc7

Browse files
committed
Fix whitespace
Signed-off-by: Johannes Schindelin <[email protected]>
1 parent f7450f0 commit b22ccc7

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
dist/** -diff linguist-generated=true
1+
dist/** -diff linguist-generated=true

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
Use this template to bootstrap the creation of a TypeScript action.:rocket:
88

9-
This template includes compilation support, tests, a validation workflow, publishing, and versioning guidance.
9+
This template includes compilation support, tests, a validation workflow, publishing, and versioning guidance.
1010

1111
If you are new, there's also a simpler introduction. See the [Hello World JavaScript Action](https://github.com/actions/hello-world-javascript-action)
1212

@@ -18,7 +18,7 @@ Click the `Use this Template` and provide the new repo details for your action
1818

1919
> First, you'll need to have a reasonably modern version of `node` handy. This won't work with versions older than 9, for instance.
2020
21-
Install the dependencies
21+
Install the dependencies
2222
```bash
2323
$ npm install
2424
```
@@ -28,7 +28,7 @@ Build the typescript and package it for distribution
2828
$ npm run build && npm run package
2929
```
3030

31-
Run the tests :heavy_check_mark:
31+
Run the tests :heavy_check_mark:
3232
```bash
3333
$ npm test
3434

@@ -57,9 +57,9 @@ import * as core from '@actions/core';
5757
...
5858

5959
async function run() {
60-
try {
60+
try {
6161
...
62-
}
62+
}
6363
catch (error) {
6464
core.setFailed(error.message);
6565
}
@@ -72,7 +72,7 @@ See the [toolkit documentation](https://github.com/actions/toolkit/blob/master/R
7272

7373
## Publish to a distribution branch
7474

75-
Actions are run from GitHub repos so we will checkin the packed dist folder.
75+
Actions are run from GitHub repos so we will checkin the packed dist folder.
7676

7777
Then run [ncc](https://github.com/zeit/ncc) and push the results:
7878
```bash
@@ -84,7 +84,7 @@ $ git push origin releases/v1
8484

8585
Note: We recommend using the `--license` option for ncc, which will create a license file for all of the production node modules used in your project.
8686

87-
Your action is now published! :rocket:
87+
Your action is now published! :rocket:
8888

8989
See the [versioning documentation](https://github.com/actions/toolkit/blob/master/docs/action-versioning.md)
9090

0 commit comments

Comments
 (0)