Skip to content

Commit 7db334b

Browse files
Copilotneilime
andcommitted
Fix command syntax and spelling issues from code review
Co-authored-by: neilime <314088+neilime@users.noreply.github.com>
1 parent db0f9c7 commit 7db334b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/continuous-integration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
# Default: `true`
8181
test: true
8282

83-
# Specifify code coverage reporter. Supported values: `codecov`.
83+
# Specify code coverage reporter. Supported values: `codecov`.
8484
# Default: `codecov`
8585
coverage: codecov
8686

@@ -110,7 +110,7 @@ jobs:
110110
| **`code-ql`** | Code QL analysis language. See <https://github.com/github/codeql-action>. | **false** | **string** | `typescript` |
111111
| **`dependency-review`** | Enable dependency review scan. See <https://github.com/actions/dependency-review-action>. | **false** | **boolean** | `true` |
112112
| **`test`** | Optional flag to enable test. | **false** | **boolean** | `true` |
113-
| **`coverage`** | Specifify code coverage reporter. Supported values: `codecov`. | **false** | **string** | `codecov` |
113+
| **`coverage`** | Specify code coverage reporter. Supported values: `codecov`. | **false** | **string** | `codecov` |
114114
| **`working-directory`** | Working directory where the dependencies are installed. | **false** | **string** | `.` |
115115
| **`container`** | Docker container image to run CI steps in. When specified, steps will execute inside this container instead of checking out code. The container should have the project code and dependencies pre-installed. | **false** | **string** | `` |
116116

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ jobs:
212212
nx
213213
prettier
214214
215-
- run: ${{ inputs.container != '' && 'npm run lint' || steps.setup-node.outputs.run-script-command }} lint
215+
- run: ${{ inputs.container != '' && 'npm run' || steps.setup-node.outputs.run-script-command }} lint
216216
working-directory: ${{ inputs.working-directory }}
217217

218218
build:
@@ -332,7 +332,7 @@ jobs:
332332
nx
333333
jest
334334
335-
- run: ${{ inputs.container != '' && 'npm run test:ci' || steps.setup-node.outputs.run-script-command }} test:ci
335+
- run: ${{ inputs.container != '' && 'npm run' || steps.setup-node.outputs.run-script-command }} test:ci
336336
working-directory: ${{ inputs.working-directory }}
337337
env:
338338
CI: "true"

0 commit comments

Comments
 (0)