Skip to content

Commit

Permalink
remove some checks
Browse files Browse the repository at this point in the history
  • Loading branch information
github-tijlxyz committed Mar 28, 2024
1 parent d18fbcf commit c782c5e
Showing 1 changed file with 0 additions and 49 deletions.
49 changes: 0 additions & 49 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,52 +26,3 @@ jobs:
run: |
npm ci
svelte-check:
runs-on: ubuntu-latest
needs: [npm-install]
steps:
- name: Checkout πŸ›ŽοΈ
uses: actions/[email protected]

- 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/[email protected]

- 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

0 comments on commit c782c5e

Please sign in to comment.