Skip to content

Commit 6494080

Browse files
author
Aleksandr Slapoguzov
committed
remove bun from types since we're using node.js runtime, add typecheck to ci
1 parent c6a3333 commit 6494080

3 files changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ on:
77
branches: [main]
88

99
jobs:
10+
typecheck:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: oven-sh/setup-bun@v2
15+
- run: bun install
16+
- run: npm run typecheck
17+
1018
build:
1119
runs-on: ubuntu-latest
1220
steps:

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
- uses: actions/checkout@v4
1515
- uses: oven-sh/setup-bun@v2
1616
- run: bun install
17+
- run: npm run typecheck
1718
- run: npm run bundle:all
1819
- name: Create Release
1920
uses: softprops/action-gh-release@v2

tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"module": "ES2022",
77
"moduleResolution": "Bundler",
88
"target": "ES2022",
9-
"types": ["bun"],
109

1110
"sourceMap": true,
1211
"declaration": true,

0 commit comments

Comments
 (0)