Skip to content

Commit 2ee11f9

Browse files
committed
Add GH action for svelte-check
1 parent cd87124 commit 2ee11f9

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.github/workflows/check.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: svelte-check
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
workflow_dispatch:
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Install dependencies
16+
run: npm install
17+
- name: Run svelte-check
18+
run: npm run check -- --use-new-transformation
19+
File renamed without changes.

0 commit comments

Comments
 (0)