Skip to content

Commit de5671a

Browse files
committed
revert expo test
1 parent 4d767c9 commit de5671a

File tree

1 file changed

+33
-3
lines changed

1 file changed

+33
-3
lines changed

.github/workflows/ci.yml

Lines changed: 33 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
node-version: ${{ matrix.node }}
3333

3434
- run: npm clean-install
35-
35+
3636
- name: Type Check
3737
run: npm run test:types
3838

@@ -103,7 +103,7 @@ jobs:
103103
104104
- name: Stop Supabase
105105
run: supabase stop
106-
106+
107107
next-integration:
108108
name: Next.js Integration
109109
runs-on: ubuntu-latest
@@ -127,7 +127,37 @@ jobs:
127127
cd test/integration/next
128128
npm install
129129
npx playwright install
130-
npm run test
130+
npm run test
131+
132+
- name: Stop Supabase
133+
run: supabase stop
134+
135+
expo-tests:
136+
name: Expo Tests
137+
runs-on: ubuntu-latest
138+
steps:
139+
- uses: actions/checkout@v4
140+
- uses: actions/setup-node@v4
141+
with:
142+
node-version: 20
143+
- uses: supabase/setup-cli@v1
144+
with:
145+
version: latest
146+
147+
- name: Start Supabase
148+
run: |
149+
supabase start
150+
151+
- name: Build and test expo
152+
run: |
153+
npm clean-install
154+
npm run build
155+
PKG=$(npm pack)
156+
echo "Packed: $PKG"
157+
cd examples/expo-app
158+
npm install "../../$PKG"
159+
npm install
160+
npm test || npm test
131161
132162
- name: Stop Supabase
133163
run: supabase stop

0 commit comments

Comments
 (0)