Skip to content

Commit

Permalink
fix: make svelte-check optional (for now)
Browse files Browse the repository at this point in the history
  • Loading branch information
maalni committed Mar 29, 2024
1 parent acf7ebb commit 4fdd4c9
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 11 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/check-code-quality-manual.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json

name: 'Check code quality'
on:
workflow_dispatch

jobs:
check-svelte-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/Iron
- run: npm install -g pnpm
- run: pnpm install
- run: pnpm svelte-check
12 changes: 1 addition & 11 deletions .github/workflows/check-code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,4 @@ jobs:
node-version: lts/Iron
- run: npm install -g pnpm
- run: pnpm install
- run: pnpm run lint
check-svelte-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/Iron
- run: npm install -g pnpm
- run: pnpm install
- run: pnpm svelte-check
- run: pnpm run lint

0 comments on commit 4fdd4c9

Please sign in to comment.