From c782c5ea11bec1f597abbf8cf69865900fdf656c Mon Sep 17 00:00:00 2001 From: tijl Date: Thu, 28 Mar 2024 21:49:50 +0100 Subject: [PATCH] remove some checks --- .github/workflows/checks.yaml | 49 ----------------------------------- 1 file changed, 49 deletions(-) diff --git a/.github/workflows/checks.yaml b/.github/workflows/checks.yaml index af5c771..15a433c 100644 --- a/.github/workflows/checks.yaml +++ b/.github/workflows/checks.yaml @@ -26,52 +26,3 @@ jobs: run: | npm ci - svelte-check: - runs-on: ubuntu-latest - needs: [npm-install] - steps: - - name: Checkout 🛎️ - uses: actions/checkout@v2.3.1 - - - name: Use cache for npm 🎁 - id: cache-npm - uses: actions/cache@v2 - with: - path: | - ~/.npm - key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-npm- - - - name: Install npm packages 📦 - run: | - npm ci - - - name: Run svelte-check 🔬 - run: | - npm run check - - check-lint: - runs-on: ubuntu-latest - needs: [npm-install] - steps: - - name: Checkout 🛎️ - uses: actions/checkout@v2.3.1 - - - name: Use cache for npm 🎁 - id: cache-npm - uses: actions/cache@v2 - with: - path: | - ~/.npm - key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-npm- - - - name: Install npm packages 📦 - run: | - npm ci - - - name: Run linter 🕵️ - run: | - npm run lint