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