diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 14a089ac..10aba725 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -12,7 +12,7 @@ on: jobs: build: - name: 🛠️ Build Check + name: 🛠️ Build & 🔍 Lint Check runs-on: ubuntu-latest steps: - name: Checkout Repository @@ -31,23 +31,6 @@ jobs: - name: 🛠️ Build Check run: npm run compile - lint: - name: 🔍 Lint Check - runs-on: ubuntu-latest - steps: - - name: Checkout Repository - uses: actions/checkout@v3 - - - name: Setup Node.js Environment - uses: actions/setup-node@v3 - with: - cache: npm - cache-dependency-path: package-lock.json - node-version-file: .nvmrc - - - name: Setup Project - run: npm ci - - name: 🔍 Linting check run: npm run lint