From 4cc28065807afce1b56aed68b12b6501da2b7dbd Mon Sep 17 00:00:00 2001 From: WardPearce Date: Mon, 6 May 2024 16:17:27 +1200 Subject: [PATCH] Added build steps --- .github/workflows/prod-android.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/prod-android.yml b/.github/workflows/prod-android.yml index 7e4dfe13..5125e7f4 100644 --- a/.github/workflows/prod-android.yml +++ b/.github/workflows/prod-android.yml @@ -14,6 +14,19 @@ jobs: steps: - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 18 + + - name: Install modules + run: cd ../ && npm install + + - name: Build package + run: cd ../ && npm run build + + - name: Sync package + run: cd ../ && npx cap sync + - name: Setup JDK uses: actions/setup-java@v3 with: