File tree 8 files changed +44
-1
lines changed
8 files changed +44
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Build Checks for Pilot
2
+
3
+ on :
4
+ push :
5
+ pull_request :
6
+ workflow_dispatch :
7
+
8
+ jobs :
9
+ build :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : actions/checkout@v2
13
+ - name : Setup Bun Runtime
14
+ uses : antongolub/action-setup-bun@v1
15
+ - run : bun i
16
+ - run : bun run build
17
+ - run : du -sh
Original file line number Diff line number Diff line change 170
170
171
171
# IntelliJ based IDEs
172
172
.idea
173
+
174
+ # Custom
175
+ tsconfig.tsbuildinfo
Original file line number Diff line number Diff line change 2
2
"name" : " cli" ,
3
3
"module" : " index.ts" ,
4
4
"type" : " module" ,
5
+ "scripts" : {
6
+ "build" : " tsc" ,
7
+ "dev" : " bun run index.ts"
8
+ },
5
9
"devDependencies" : {
6
10
"bun-types" : " latest"
7
11
},
Original file line number Diff line number Diff line change 170
170
171
171
# IntelliJ based IDEs
172
172
.idea
173
+
174
+ # Custom
175
+ tsconfig.tsbuildinfo
Original file line number Diff line number Diff line change 5
5
"workspaces" : [
6
6
" packages/*" ,
7
7
" apps/*"
8
- ]
8
+ ],
9
+ "scripts" : {
10
+ "build" : " bun run build:cli && bun run build:worker && bun run build:core" ,
11
+ "build:cli" : " cd apps/cli && bun run build" ,
12
+ "build:worker" : " cd apps/worker && bun run build" ,
13
+ "build:core" : " cd packages/core && bun run build"
14
+ },
15
+ "dependencies" : {
16
+ "typescript" : " ^5.0.0"
17
+ }
9
18
}
Original file line number Diff line number Diff line change 170
170
171
171
# IntelliJ based IDEs
172
172
.idea
173
+
174
+ # Custom
175
+ tsconfig.tsbuildinfo
Original file line number Diff line number Diff line change 2
2
"name" : " core" ,
3
3
"module" : " index.ts" ,
4
4
"type" : " module" ,
5
+ "scripts" : {
6
+ "build" : " tsc" ,
7
+ "dev" : " bun run index.ts"
8
+ },
5
9
"devDependencies" : {
6
10
"bun-types" : " latest"
7
11
},
You can’t perform that action at this time.
0 commit comments