From 01c21db3fd638afb3878ae3e87be399d6c35f1d5 Mon Sep 17 00:00:00 2001 From: Fmar Date: Sun, 1 Sep 2024 23:52:38 +0200 Subject: [PATCH] add initial build --- .github/workflows/main.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..d03ff69 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,25 @@ +on: [pull_request] +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: 🏗 Setup repo + uses: actions/checkout@v3 + + - name: 🏗 Setup Node + uses: actions/setup-node@v3 + with: + node-version: 18.x + cache: yarn + + - name: 🏗 Setup EAS + uses: expo/expo-github-action@v8 + with: + eas-version: latest + token: ${{ secrets.EXPO_TOKEN }} + + - name: 📦 Install dependencies + run: yarn install + + - name: 🚀 Build app + run: eas build --non-interactive --platform android --local --profile preview \ No newline at end of file