From 48285f7d1f3d8bd923b31756830b8b0387a2b0bd Mon Sep 17 00:00:00 2001 From: Snazzah Date: Thu, 24 Jun 2021 00:31:09 -0500 Subject: [PATCH] Update linting action --- .github/workflows/{eslint.yml => lint.yml} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename .github/workflows/{eslint.yml => lint.yml} (87%) diff --git a/.github/workflows/eslint.yml b/.github/workflows/lint.yml similarity index 87% rename from .github/workflows/eslint.yml rename to .github/workflows/lint.yml index 550e3a8..7f9ec94 100644 --- a/.github/workflows/eslint.yml +++ b/.github/workflows/lint.yml @@ -1,4 +1,4 @@ -name: ESLint +name: Lint on: push: paths: @@ -22,11 +22,11 @@ jobs: - name: Install dependencies run: yarn install - name: Run ESLint - run: yarn run eslint:fix + run: yarn run lint:fix - name: Commit changes uses: EndBug/add-and-commit@v4 with: add: src message: "chore(lint): Auto-fix linting errors" env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}