Skip to content

Commit

Permalink
feat(ci): add running expo export
Browse files Browse the repository at this point in the history
  • Loading branch information
duongdev committed Jul 8, 2024
1 parent 05bb0d8 commit f88a48c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ on:
- workflow_dispatch

jobs:
build_api:
name: Build API
build:
name: Build
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -39,9 +39,14 @@ jobs:
- name: Install dependencies
run: pnpm install

- name: Build
- name: Build API
run: pnpm api:build

- name: Expo export
env:
EXPO_USE_METRO_WORKSPACE_ROOT: 1
run: pnpm --filter @6pm/mobile run export

lint:
name: Lint
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions apps/mobile/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"export": "expo export",
"test": "jest --watchAll",
"lint": "expo lint",
"check": "biome check"
Expand Down

0 comments on commit f88a48c

Please sign in to comment.