Skip to content

Commit cebfab4

Browse files
committed
ci
1 parent cd15fc1 commit cebfab4

File tree

4 files changed

+30
-16
lines changed

4 files changed

+30
-16
lines changed

.github/workflows/lint.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,12 @@ jobs:
1818
- name: install bun
1919
uses: oven-sh/setup-bun@v2
2020

21-
- name: Install UI packages
21+
- name: Installs UI packages
2222
run: cd ui && bun install
2323

24+
- name: Installs mobile packages
25+
run: cd mobile-frontend && bun install
26+
2427
eslint:
2528
runs-on: ubuntu-latest
2629
steps:
@@ -32,3 +35,15 @@ jobs:
3235

3336
- name: run linter
3437
run: bun run lint
38+
39+
doctor:
40+
runs-on: ubuntu-latest
41+
steps:
42+
- name: Setup repository
43+
uses: actions/checkout@v4
44+
45+
- name: install bun
46+
uses: oven-sh/setup-bun@v2
47+
48+
- name: expo doctor should pass
49+
run: bunx expo-doctor

mobile-frontend/app.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,8 @@
4444
"faceIDPermission": "Allow $(PRODUCT_NAME) to use Face ID."
4545
}
4646
],
47-
"expo-localization"
47+
"expo-localization",
48+
"expo-font"
4849
]
49-
},
50-
"android": {
51-
"googleServicesFile": "./android/app/google-services.json"
5250
}
5351
}

mobile-frontend/bun.lockb

-22.6 KB
Binary file not shown.

mobile-frontend/package.json

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"@gorhom/bottom-sheet": "^4",
2424
"@noble/hashes": "^1.4.0",
2525
"@postero/ui": "../ui",
26-
"@react-native-picker/picker": "2.7.7",
26+
"@react-native-picker/picker": "2.7.5",
2727
"@react-navigation/bottom-tabs": "^6.5.20",
2828
"@react-navigation/native": "^6.1.17",
2929
"@react-navigation/native-stack": "^6.9.26",
@@ -42,13 +42,13 @@
4242
"eslint-plugin-prettier": "^5.2.1",
4343
"ethers": "^6.13.1",
4444
"events": "^3.3.0",
45-
"expo": "51.0.14",
45+
"expo": "~51.0.39",
4646
"expo-blur": "~13.0.2",
4747
"expo-camera": "~15.0.11",
4848
"expo-clipboard": "~6.0.3",
4949
"expo-crypto": "^13.0.2",
5050
"expo-device": "~6.0.2",
51-
"expo-font": "12.0.7",
51+
"expo-font": "~12.0.10",
5252
"expo-gl": "14.0.2",
5353
"expo-haptics": "~13.0.1",
5454
"expo-linear-gradient": "~13.0.2",
@@ -64,17 +64,17 @@
6464
"lodash": "^4.17.21",
6565
"path": "^0.12.7",
6666
"prettier": "^3.4.2",
67-
"react": "18.3.1",
68-
"react-dom": "18.3.1",
69-
"react-native": "0.74.2",
67+
"react": "18.2.0",
68+
"react-dom": "18.2.0",
69+
"react-native": "0.74.5",
7070
"react-native-gesture-handler": "2.16.2",
7171
"react-native-paper": "^5.12.3",
7272
"react-native-qrcode-svg": "^6.3.1",
7373
"react-native-reanimated": "3.10.1",
7474
"react-native-reanimated-carousel": "^3.5.1",
75-
"react-native-safe-area-context": "4.10.4",
75+
"react-native-safe-area-context": "4.10.5",
7676
"react-native-screens": "~3.31.1",
77-
"react-native-svg": "15.3.0",
77+
"react-native-svg": "15.2.0",
7878
"react-native-tab-view": "^3.5.2",
7979
"react-native-web": "0.19.12",
8080
"readable-stream": "^4.5.2",
@@ -89,9 +89,10 @@
8989
"@types/color": "^3.0.6",
9090
"@types/d3": "^7.4.3",
9191
"@types/lodash": "^4.17.7",
92-
"@types/react": "~18.3.3",
92+
"@types/react": "~18.2.79",
9393
"eslint": "^8.57.0",
9494
"eslint-config-expo": "^7.0.0",
95-
"typescript": "^5.5.3"
96-
}
95+
"typescript": "~5.3.3"
96+
},
97+
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
9798
}

0 commit comments

Comments
 (0)