diff --git a/.github/workflows/run-test.yml b/.github/workflows/run-test.yml index 9d8a203..af6fc0f 100644 --- a/.github/workflows/run-test.yml +++ b/.github/workflows/run-test.yml @@ -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: @@ -22,14 +24,17 @@ 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