From 05abfd5328e5123fa258f487d6cf9d937ca9a542 Mon Sep 17 00:00:00 2001 From: Daniel <52611355+kingdanie@users.noreply.github.com> Date: Thu, 22 Jun 2023 14:36:30 +0100 Subject: [PATCH] deleted lint.yml file --- .github/workflows/lint.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml deleted file mode 100644 index ea200015..00000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Lint - -on: push - -jobs: - run-linters: - name: Run linters - runs-on: ubuntu-latest - - steps: - - name: Git checkout - uses: actions/checkout@v2 - - - name: Use Node.js v18 - uses: actions/setup-node@v1 - with: - node-version: 18 - - - name: Install Node.js dependencies - run: yarn install - - - name: Run ESLint - run: yarn run eslint ./src --ext .js,.jsx,.ts,.tsx -c ./.eslintrc.js