Skip to content

fix: github workflow bun error #24

fix: github workflow bun error

fix: github workflow bun error #24

Workflow file for this run

name: WoMob Github Action
run-name: ${{ github.actor }} is testing out Github Actions πŸš€
on: [push]
jobs:
Create-Upload:

Check failure on line 5 in .github/workflows/run-test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/run-test.yml

Invalid workflow file

You have an error in your yaml syntax on line 5
runs-on: ubuntu-latest
steps:
- name: πŸ— Setup repo
uses: actions/checkout@v4
- name: πŸ— Setup repo
uses: oven-sh/setup-bun@v1
- name: πŸ— Setup Node
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: πŸ— Setup EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: πŸš€ Install Packages
run: |
bun install
- name: πŸ§ͺ Run format and lint
run: |
bun format && bun validate
- name: πŸ§ͺ Run Test
run: |
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
run: |
ls ${{ github.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."