From 801cd24a04bf7c67b82449703060a3a65eeefb92 Mon Sep 17 00:00:00 2001 From: Henning Hall Date: Sun, 26 Mar 2023 21:12:40 +0200 Subject: [PATCH] install modules in root --- .github/workflows/maestro.yml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/workflows/maestro.yml b/.github/workflows/maestro.yml index 34d2a235..4d7fcabe 100644 --- a/.github/workflows/maestro.yml +++ b/.github/workflows/maestro.yml @@ -8,18 +8,24 @@ on: jobs: maestro-cloud: - runs-on: macos-latest + runs-on: ubuntu-latest outputs: app: app/build/outputs/apk/release steps: - uses: actions/checkout@v3 - - name: Node - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 + with: + node-version: 14.18.1 + cache: 'yarn' + + - name: Install npm dependencies (example project) + working-directory: ./examples/Rn069/ + run: yarn install --frozen-lockfile - - name: Install npm dependencies - working-directory: ./examples/Rn069 - run: yarn install --frozen-lockfile --network-timeout 60000 + - name: Install npm dependencies (root) + working-directory: ./ + run: yarn install --frozen-lockfile - uses: actions/setup-java@v3 with: