diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml deleted file mode 100644 index 51848099..00000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: Lint - -on: - workflow_dispatch: - pull_request: - push: - branches: - - develop - - master - -jobs: - lint: - - name: ESLint - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Setup Node - uses: actions/setup-node@v2 - with: - node-version: 18.x - - - name: Get yarn cache directory path - id: yarn-cache-dir-path - run: echo "::set-output name=dir::$(yarn cache dir)" - - - uses: actions/cache@v2 - id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) - with: - path: ${{ steps.yarn-cache-dir-path.outputs.dir }} - key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - ${{ runner.os }}-yarn- - - - name: Install dependencies - run: yarn install --frozen-lockfile - - - name: Run ESLint - run: yarn lint diff --git a/package.json b/package.json index d70b3abf..3eb2d74f 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,6 @@ "scripts": { "format:check": "prettier --check '*/**/*.{js,ts}'", "format:write": "prettier --write '*/**/*.{js,ts}'", - "lint": "eslint '*/**/*.{js,ts}'", "test": "vitest --run --globals", "test:coverage": "jest --coverage" },