From be6be447899419f99f5cb0f57aadeb163c0266f6 Mon Sep 17 00:00:00 2001 From: h-takeyeah <61489178+h-takeyeah@users.noreply.github.com> Date: Fri, 8 Mar 2024 20:15:44 +0900 Subject: [PATCH] ci: remove lint job --- .github/workflows/nodejsci.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/workflows/nodejsci.yml b/.github/workflows/nodejsci.yml index 15744f1..d0b9daa 100644 --- a/.github/workflows/nodejsci.yml +++ b/.github/workflows/nodejsci.yml @@ -11,7 +11,6 @@ on: - "typing-app/**" pull_request: branches: - - "ci/**" - develop - main paths: @@ -34,19 +33,3 @@ jobs: root: ${{ github.workspace }}/typing-app - name: Try to build run: npm run build - - lint: - name: Lint - runs-on: ubuntu-latest - needs: build - steps: - - uses: actions/checkout@v4 - - uses: actions/cache/restore@v4 - with: - path: | - ${{ github.workspace }}/typing-app/node_modules - ${{ github.workspace }}/typing-app/.next/cache - key: ${{ runner.os }}-bun-cache-${{ hashFiles('typing-app/bun.lockb') }} - fail-on-cache-miss: true - - name: Run lint - run: npm run lint