Skip to content

Commit 2256a74

Browse files
committed
Add simple vscode task
1 parent cf90280 commit 2256a74

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.vscode/tasks.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "shell",
6+
"label": "Fastlane: Build SwiftUI Demo",
7+
"command": "bundle exec fastlane build_swiftui_demo",
8+
"group": {
9+
"kind": "build",
10+
"isDefault": true
11+
}
12+
},
13+
{
14+
"type": "shell",
15+
"label": "Fastlane: Test StreamVideo",
16+
"command": "bundle exec fastlane test",
17+
"group": {
18+
"kind": "test",
19+
"isDefault": true
20+
}
21+
},
22+
]
23+
}

0 commit comments

Comments
 (0)