1 parent 3d4664b commit 5196602Copy full SHA for 5196602
2 files changed
.github/workflows/check.yaml
@@ -0,0 +1,25 @@
1
+name: Check
2
+
3
+on:
4
+ - push
5
6
+jobs:
7
+ check:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v6
11
+ - uses: actions/setup-node@v6
12
+ with:
13
+ cache: 'yarn'
14
15
+ - name: Install dependencies
16
+ run: yarn --immutable
17
18
+ - name: Typecheck
19
+ run: yarn typecheck
20
21
+ - name: Lint
22
+ run: yarn lint
23
24
+ - name: Build
25
+ run: yarn build
package.json
@@ -4,6 +4,7 @@
"version": "0.1.0",
"scripts": {
"dev": "vite",
+ "typecheck": "vue-tsc --noEmit",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint .",
0 commit comments