diff --git a/.github/workflows/clinter.yml b/.github/workflows/clinter.yml new file mode 100644 index 0000000..7900df6 --- /dev/null +++ b/.github/workflows/clinter.yml @@ -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 diff --git a/package.json b/package.json index f441bcc..aa75346 100644 --- a/package.json +++ b/package.json @@ -1,4 +1,5 @@ { + "name": "clinter", "version": "1.16.0", "description": "A cli tool to quickly generate eslint configurations",