burhanyilmaz is testing out Github Actions π #38
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: WoMob Github Action | |
run-name: ${{ github.actor }} is testing out Github Actions π | |
on: [push] | |
jobs: | |
Create-Upload: | |
runs-on: ubuntu-latest | |
steps: | |
- name: π Setup repo | |
uses: actions/checkout@v4 | |
- 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: | | |
yarn install | |
- name: π§ͺ Run format and lint | |
run: | | |
yarn format && yarn validate | |
- name: π§ͺ Run test | |
run: | | |
yarn 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 }}." | |