Skip to content

Commit

Permalink
Add svelte-check to CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
amyjko committed Dec 1, 2024
1 parent 0a8fa1d commit cf3357a
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/svelte-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Svelte check (types and a11y)

on:
push:
branches: ['main']
pull_request:
branches: ['main']

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [20.x]

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
name: Install dependencies
- run: npx svelte-check --tsconfig ./tsconfig.json .svelte-kit
name: Run svelte-check
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ Dates are in `YYYY-MM-DD` format and versions are in [semantic versioning](http:
- Fixed exiting reactivity bug in StageView.
- Fixed Safari color emoji rendering.

### Maintenance

- Add svelte-check to CI.

## 0.13.0 2024-11-02

### Fixed
Expand Down

0 comments on commit cf3357a

Please sign in to comment.