Skip to content

Commit

Permalink
fix: github workflow bun error
Browse files Browse the repository at this point in the history
  • Loading branch information
burhanyilmaz committed May 6, 2024
1 parent 2acd70d commit 63d7f38
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions .github/workflows/run-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: 🏗 Setup repo
uses: oven-sh/setup-bun@v1
- name: 🏗 Setup Node
uses: actions/setup-node@v3
with:
Expand All @@ -22,14 +24,18 @@ jobs:
- name: 🧪 Run format and lint
run: |
bun format && bun validate
- name: Build apk
- name: 🧪 Run Test
run: |
bun build:android:local
- name: 🥳 Upload APK File
uses: actions/upload-artifact@v3
with:
name: womob-apk
path: ${{ github.workspace }}/*.apk
bun test
# - name: Build apk
# run: |
# bun build:android:local
# - name: 🥳 Upload APK File
# uses: actions/upload-artifact@v3
# with:
# name: womob-apk
# path: ${{ github.workspace }}/*.apk
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
Expand Down

0 comments on commit 63d7f38

Please sign in to comment.