Skip to content

Commit

Permalink
tweak introduction
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysd committed Jun 19, 2021
1 parent 9e8c4b7 commit aec7cd9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ actionlint

Features:

- **Syntax check for workflow files**: When some keys are missing or unexpected, actionlint reports them
- **Strong type check for `${{ }}` expressions**: It can catch access to not existing property as well as type mismatches
- **[shellcheck][] integration** for `run:` section
- **Other several useful checks**; dependencies check for `needs:` section, runner label validation, cron syntax validation, ...
- **Syntax check for workflow files**: actionlint checks unexpected or missing keys following [workflow syntax][syntax-doc]
- **Strong type check for `${{ }}` expressions**: actionlint catches several semantic errors like access to not existing property, type mismatches, ...
- **[shellcheck][] integration** for scripts in `run:`
- **Other several useful checks**; dependencies check for `needs:`, runner label validation, cron syntax validation, ...

See ['Checks' section](#checks) for full list of checks done by actionlint.

Expand Down Expand Up @@ -53,7 +53,7 @@ example.yaml:16:20: property "platform" is not defined in object type {os: strin
| ^~~~~~~~~~~~~~~
```
actionlint tries to catch errors as much as possible and tries to make false positive as minimal as possible.
actionlint tries to catch errors as much as possible and make false positives as minimal as possible.
# Why?
Expand Down

0 comments on commit aec7cd9

Please sign in to comment.