From 57c928240b517e91d705d9b414e68e19f8efdc5b Mon Sep 17 00:00:00 2001 From: Allyedge Date: Wed, 1 Jun 2022 19:49:37 +0200 Subject: [PATCH] feat: remove JS linter --- .github/workflows/linter.yml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/linter.yml diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml deleted file mode 100644 index 3f0f7d8..0000000 --- a/.github/workflows/linter.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Lint - -on: - # Trigger the workflow on push or pull request, - # but only for the main branch - push: - branches: - - main - pull_request_target: - branches: - - main - -jobs: - run-linters: - name: Run linters - runs-on: ubuntu-latest - - steps: - - name: Check out Git repository - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3 - - - name: Set up Node.js - uses: actions/setup-node@56337c425554a6be30cdef71bf441f15be286854 # tag=v3 - with: - node-version: 17 - - # ESLint and Prettier must be in `package.json` - - name: Install Node.js dependencies - run: npm i - - - name: Run Prettier - run: npm run format