Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sparksp/elm-review-action
GitHub action using elm-review to check code quality
https://github.com/sparksp/elm-review-action
actions
Last synced: about 2 months ago
JSON representation
GitHub action using elm-review to check code quality
- Host: GitHub
- URL: https://github.com/sparksp/elm-review-action
- Owner: sparksp
- License: mit
- Created: 2020-05-30T10:36:15.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-10-02T09:57:52.000Z (3 months ago)
- Last Synced: 2024-10-03T17:00:32.906Z (3 months ago)
- Topics: actions
- Language: TypeScript
- Homepage:
- Size: 1.56 MB
- Stars: 12
- Watchers: 4
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![elm-review-action status](https://github.com/sparksp/elm-review-action/workflows/build-test/badge.svg)](https://github.com/sparksp/elm-review-action/actions)
# elm-review
Check the quality of your [Elm] code using [elm-review] in a GitHub workflow - any reports found will be added as annotations on your files.
[Elm]: https://elm-lang.org/
[elm-review]: https://github.com/jfmengels/node-elm-review## Check Summary
This view shows in your pull request checks or repository actions. You can see a [working example of some failed checks](https://github.com/sparksp/elm-review-action/runs/727935056?check_suite_focus=true).
![check-summary](docs/check-summary.png)
## Annotations
This is the view of "files changed" in a pull request with the elm-review annotations shown inline. Errors can show up in files even if you didn't change them in the pull request, as they could be a side effect of your changes.
![annotations](docs/annotations.png)
## Permissions
This action uses the GitHub Checks API. You will need a token with the [write checks permission](https://docs.github.com/en/actions/security-guides/automatic-token-authentication#permissions-for-the-github_token). You can do this for the whole workflow or per-job.
```yaml
permissions:
checks: write
```## Finding elm-review
You must have `elm-review`, `elm-format` and the `elm` compiler available in your build, here is an example using `$GITHUB_PATH` for when they're all dependencies in `package.json`.
```yaml
jobs:
lint:
permissions:
checks: write
steps:
- uses: actions/checkout@v2
- run: yarn --frozen-lockfile
- name: Add elm-review, elm and elm-format to path
run: yarn bin >> $GITHUB_PATH
- uses: sparksp/elm-review-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
# elm_review: elm-review
# elm_format: elm-format
# elm_compiler: elm
```## Configuration
The default options are probably sufficient for most people's needs, however we understand that your set up may be different. You can use the options details below to specify the paths for `elm-review`, `elm-format` and the `elm` compiler; to locate your project's `elm.json` or `review/` folder, and to specify a custom list of files to review. You can also customise the check name that shows up.
This snippet shows an example of what the option defaults are like, however there's more going on behind the scenes to establish the proper default for some values.
```yaml
- uses: sparksp/elm-review-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
# name: elm-review
# elm_review: elm-review
# elm_compiler: elm
# elm_format: elm-format
# elm_review_config: review
# elm_json: elm.json
# elm_files: |
# src/
# tests/
# working-directory: ./
```### name
This action creates its own entry in the checks called "elm-review", you can change the check name shown with this input.
### elm_review
Specify the path to `elm-review`.
### elm_compiler
Specify the path to the `elm` compiler.
### elm_format
Specify the path to `elm-format`.
### elm_review_config
Use the `review/` configuration in the specified directory instead of the one found in the current directory or one of its parents.
### elm_json
Specify the path to the elm.json file of the project. By default, the one in the current directory or its parent directories will be used.
### elm_files
List of Elm files or directories you wish to review. Unless files or directories are specified, `elm-review` will look at:
- For packages: `src/` and `tests/`
- For applications: the `source-directories` in the project's `elm.json` and `tests/`### working-directory
Optional working directory, defaults to the current directory.