We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06775f1 commit e8a0f1dCopy full SHA for e8a0f1d
.github/workflows/ci.yml
@@ -28,12 +28,6 @@ jobs:
28
- name: Validate pre-built native binaries exist
29
run: bun run validate-binaries
30
31
- - name: Lint
32
- run: bun run lint
33
-
34
- - name: Type check
35
- run: bun run tsc
36
37
- name: Build TypeScript
38
run: bun run build:ts
39
@@ -64,9 +58,6 @@ jobs:
64
58
- name: Install dependencies
65
59
run: bun install --frozen-lockfile
66
60
67
68
- run: bun run build:ts
69
70
61
- name: Validate TypeScript compilation
71
62
run: |
72
63
if [ -f "dist/index.js" ] && [ -f "dist/index.mjs" ] && [ -f "dist/index.d.ts" ]; then
@@ -75,3 +66,9 @@ jobs:
75
echo "❌ TypeScript compilation failed"
76
exit 1
77
fi
+
+ - name: Lint
+ run: bun run lint
73
+ - name: Type check
74
+ run: bun run tsc
0 commit comments