Skip to content

Commit

Permalink
💚
Browse files Browse the repository at this point in the history
  • Loading branch information
wcandillon committed Jun 18, 2024
1 parent 9165e9c commit ec572ba
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,13 @@ jobs:
path: artifacts
branch: main

- uses: actions/setup-node@v3
with:
cache: 'yarn'
cache-dependency-path: package/yarn.lock

- name: Install Package
working-directory: package
run: yarn install --frozen-lockfile
run: cd package; yarn install --frozen-lockfile

- name: Copy Artifacts to libs folder
working-directory: package
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ jobs:
- uses: actions/setup-node@v3
with:
cache: 'yarn'
cache-dependency-path: package/yarn.lock

- name: Install Package
run: cd package; yarn install --frozen-lockfile

- name: Download Dawn Binary Artifacts
uses: dawidd6/action-download-artifact@v2
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ jobs:
- name: Run clang-format-common
run: yarn clang-format-common --dry-run --Werror


- uses: actions/setup-node@v3
with:
cache: 'yarn'
Expand Down

0 comments on commit ec572ba

Please sign in to comment.