You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Copy file name to clipboardExpand all lines: README.md
+18-18Lines changed: 18 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ Create a workflow `.yml` file in your repositories `.github/workflows` directory
14
14
15
15
### Inputs
16
16
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).
18
18
-`root-path`: The path to the root folder of the project where the `package.json` and `angular.json` files are located. Defaults to `./`.
19
19
20
20
### Example workflow - match Angular versions
@@ -37,21 +37,21 @@ jobs:
37
37
strategy:
38
38
matrix:
39
39
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
55
55
- 11.2.x
56
56
- 12.0.x
57
57
- 12.1.x
@@ -80,8 +80,8 @@ This example use the github matrix to build, lint and test your code against dif
80
80
81
81
At the moment this actions supports a limited set of Angular versions listed below.
0 commit comments