Skip to content

Commit 1df9382

Browse files
committed
fix over-localized issue
1 parent dcc4fd7 commit 1df9382

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

learn-pr/wwl-azure/introduction-to-github-actions/10-knowledge-check.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,13 @@ quiz:
1717
questions:
1818
- content: "Which of the following choices is a keyword to make one job wait for another job to complete?"
1919
choices:
20-
- content: |
21-
on.
20+
- content: <code>on</code>
2221
isCorrect: false
2322
explanation: "Incorrect. Jobs run in parallel by default, but you can define dependencies between the jobs using needs."
24-
- content: |
25-
needs.
23+
- content: <code>needs</code>
2624
isCorrect: true
2725
explanation: "Correct. Jobs run in parallel by default, but you can define dependencies between the jobs using needs."
28-
- content: |
29-
uses.
26+
- content: <code>uses</code>
3027
isCorrect: false
3128
explanation: "Incorrect. Jobs run in parallel by default, but you can define dependencies between the jobs using needs."
3229
- content: "Which of the following choices isn't a level that self-hosted runners can be added within an enterprise?"

0 commit comments

Comments
 (0)