File tree Expand file tree Collapse file tree 2 files changed +47
-0
lines changed
Expand file tree Collapse file tree 2 files changed +47
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Lint
2+
3+ on :
4+ push :
5+ branches : [main, develop]
6+ pull_request :
7+ branches : [main, develop]
8+
9+ jobs :
10+ lint :
11+ runs-on : ubuntu-latest
12+ timeout-minutes : 10
13+
14+ steps :
15+ - name : Checkout code
16+ uses : actions/checkout@v4
17+
18+ - name : Setup Bun
19+ uses : oven-sh/setup-bun@v1
20+ with :
21+ bun-version : latest
22+
23+ - name : Cache dependencies
24+ uses : actions/cache@v4
25+ with :
26+ path : ~/.bun/install/cache
27+ key : ${{ runner.os }}-bun-${{ hashFiles('**/bun.lockb') }}
28+ restore-keys : |
29+ ${{ runner.os }}-bun-
30+
31+ - name : Install dependencies
32+ run : bun install --frozen-lockfile
33+
34+ - name : Run ESLint
35+ run : bun run lint:check
36+
37+ - name : Run Prettier check
38+ run : bun run format:check
39+
40+ - name : Run Svelte type check
41+ run : bun run check
42+
43+ - name : Summary
44+ if : success()
45+ run : echo "✅ All linting checks passed!"
Original file line number Diff line number Diff line change 11# Tektite - Tauri + SvelteKit + TypeScript
22
3+ [ ![ Lint] ( https://github.com/YOUR_USERNAME/tektite/actions/workflows/lint.yml/badge.svg )] ( https://github.com/lorrehuggan/tektite/actions/workflows/lint.yml )
4+
35Modern desktop application built with Tauri, SvelteKit, and TypeScript featuring comprehensive code
46quality tooling.
57
You can’t perform that action at this time.
0 commit comments