-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Iuri Pereira <[email protected]>
- Loading branch information
Showing
1 changed file
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,16 +24,19 @@ jobs: | |
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup node | ||
- name: Setup asdf | ||
uses: asdf-vm/actions/setup@v2 | ||
|
||
- name: Setup tools | ||
run: | | ||
asdf plugin add nodejs | ||
asdf install nodejs | ||
make asdf.install_plugins | ||
echo "$(asdf current ruby -v)" | ||
echo "node_version=$(asdf current nodejs | xargs | cut -d ' ' -f 2)" >> $GITHUB_ENV | ||
- name: Setup yarn | ||
run: | | ||
asdf plugin add yarn | ||
asdf install yarn | ||
# - name: Setup yarn | ||
# run: | | ||
# asdf plugin add yarn | ||
# asdf install yarn | ||
|
||
- name: Cache node modules | ||
uses: actions/[email protected] | ||
|
@@ -51,9 +54,6 @@ jobs: | |
- name: Set TMPDIR environment variable | ||
run: echo "TMPDIR=${{ runner.temp }}" >> $GITHUB_ENV | ||
|
||
- name: Setup asdf | ||
uses: asdf-vm/actions/setup@v2 | ||
|
||
- name: Build IOS | ||
run: make build.ios | ||
|