Skip to content

Commit

Permalink
install modules in root
Browse files Browse the repository at this point in the history
  • Loading branch information
henninghall committed Mar 26, 2023
1 parent e37426b commit 801cd24
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/maestro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 801cd24

Please sign in to comment.