Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/clinter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Run clinter every 5 minutes

on: [push]
# schedule:
# - cron: "*/1 * * * *"

jobs:
clinter:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Install latest version of clinter
run: npm install clinter@latest --no-save

- name: Run clinter
run: npx clinter --auto
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{

"name": "clinter",
"version": "1.16.0",
"description": "A cli tool to quickly generate eslint configurations",
Expand Down