Skip to content

Commit c1f0ae4

Browse files
authored
docs: Update typos in REAME.md file (#42)
I am not an expert in GitHub Actions, but after I ran a simple example by copying and pasting the code from 'Example Workflow', I noticed that the comma from the matrix values is picked up and leads to errors.
1 parent 7bb19de commit c1f0ae4

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
@@ -14,7 +14,7 @@ Create a workflow `.yml` file in your repositories `.github/workflows` directory
1414

1515
### Inputs
1616

17-
- `angular-version`: The base Angular version used to match the dependency version. Ex: 8.0.x, 10.0.x. To check the full list of supported versions, see [supported versions](###Supported-Angular-versions).
17+
- `angular-version`: The base Angular version used to match the dependency version. Ex: 8.0.x, 10.0.x. To check the full list of supported versions, see [supported versions](#Supported-Angular-versions).
1818
- `root-path`: The path to the root folder of the project where the `package.json` and `angular.json` files are located. Defaults to `./`.
1919

2020
### Example workflow - match Angular versions
@@ -37,21 +37,21 @@ jobs:
3737
strategy:
3838
matrix:
3939
angular-version:
40-
- 6.0.x,
41-
- 6.1.x,
42-
- 7.0.x,
43-
- 7.1.x,
44-
- 7.2.x,
45-
- 8.0.x,
46-
- 8.1.x,
47-
- 8.2.x,
48-
- 9.0.x,
49-
- 9.1.x,
50-
- 10.0.x,
51-
- 10.1.x,
52-
- 10.2.x,
53-
- 11.0.x,
54-
- 11.1.x,
40+
- 6.0.x
41+
- 6.1.x
42+
- 7.0.x
43+
- 7.1.x
44+
- 7.2.x
45+
- 8.0.x
46+
- 8.1.x
47+
- 8.2.x
48+
- 9.0.x
49+
- 9.1.x
50+
- 10.0.x
51+
- 10.1.x
52+
- 10.2.x
53+
- 11.0.x
54+
- 11.1.x
5555
- 11.2.x
5656
- 12.0.x
5757
- 12.1.x
@@ -80,8 +80,8 @@ This example use the github matrix to build, lint and test your code against dif
8080

8181
At the moment this actions supports a limited set of Angular versions listed below.
8282

83-
- 6.0.x,
84-
- 6.1.x,
83+
- 6.0.x
84+
- 6.1.x
8585
- 7.0.x
8686
- 7.1.x
8787
- 7.2.x

0 commit comments

Comments
 (0)