Skip to content

Commit

Permalink
fixup: run type-checks in Svelte 3
Browse files Browse the repository at this point in the history
  • Loading branch information
mcous committed Oct 21, 2024
1 parent 16e0536 commit ba4e5a2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ jobs:
include:
# We only need to lint once, so do it on latest Node and Svelte
- { node: '20', svelte: '4', check: 'lint' }
# `SvelteComponent` is not generic in Svelte 3, so type-checking only passes in >= 4
# Run type checks in latest node
- { node: '20', svelte: '3', check: 'types:legacy' }
- { node: '20', svelte: '4', check: 'types:legacy' }
- { node: '20', svelte: '5', check: 'types' }
# Only run Svelte 5 checks on latest Node
Expand Down

0 comments on commit ba4e5a2

Please sign in to comment.