Skip to content

Commit fed1bcb

Browse files
committed
Update .gitignore for build artifacts and add CI workflow
1 parent c65b5a8 commit fed1bcb

2 files changed

Lines changed: 40 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
8+
jobs:
9+
test:
10+
name: Tests
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Setup Bun
16+
uses: oven-sh/setup-bun@v2
17+
18+
- name: Install dependencies
19+
run: bun install --no-save
20+
env:
21+
BUN_CONFIG_IGNORE_SCRIPTS: true
22+
23+
- name: Run tests
24+
run: bun test

.gitignore

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,22 @@ _perry_failed_stubs.o
88
mango
99
app
1010
app_debug
11+
mango-android
12+
screenshot-mac
13+
screenshot-ios-sim
14+
libhone_editor_android.so
1115

1216
# Runtime data
1317
*.db
1418

1519
# Node modules
1620
node_modules/
1721

18-
# IDE
22+
# IDE / tooling
1923
.vscode/
2024
.idea/
25+
.claude/
26+
.perry/
2127

2228
# macOS
2329
.DS_Store
@@ -34,5 +40,14 @@ playstore/screenshots/
3440
appstore/config.json
3541
playstore/config.json
3642

43+
# Build artifacts
44+
*.app/
45+
mango-android-build/
46+
Mango-orig
47+
mango-test
48+
res/
49+
__pycache__/
50+
test-screenshots/
51+
3752
# Internal docs
3853
mango-product-spec.md

0 commit comments

Comments
 (0)