https://github.com/gimenete/actions
GitHub actions!
https://github.com/gimenete/actions
Last synced: 4 days ago
JSON representation
GitHub actions!
- Host: GitHub
- URL: https://github.com/gimenete/actions
- Owner: gimenete
- License: mit
- Created: 2019-01-09T17:14:53.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-09T18:31:19.000Z (over 6 years ago)
- Last Synced: 2025-05-07T11:16:17.120Z (4 days ago)
- Language: JavaScript
- Size: 15.6 KB
- Stars: 12
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Actions
A collection of GitHub actions.
## ESLint
Offload your CI for running ESLint. With this action you can run it in parallel to your CI process, which means, faster builds!
This action will also annotate the diff with the errors and warnings reported by ESLint.
How to use it?
In the visual editor, enter `gimenete/actions/eslint@master` as the path to the action and check the `GITHUB_TOKEN` secret.
If you want to use the file editor, add something like this:
```
workflow "Title of your workflow" {
on = "push"
resolves = ["ESLint"]
}action "ESLint" {
uses = "gimenete/actions/eslint@master"
secrets = ["GITHUB_TOKEN"]
}
```