-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
need to separate yarn from nargo setup because foundry project doesnt…
… have yarn
- Loading branch information
1 parent
b722965
commit 4955bf9
Showing
4 changed files
with
27 additions
and
16 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Install Yarn dependencies | ||
description: Installs the workspace's yarn dependencies and caches them | ||
inputs: | ||
version: | ||
description: The version of the project to install dependencies for | ||
required: true | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Install Nargo | ||
uses: noir-lang/[email protected] | ||
with: | ||
toolchain: ${{ inputs.version }} | ||
|
||
- name: Use Nargo | ||
run: nargo --version | ||
shell: bash |
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 |
---|---|---|
|
@@ -4,9 +4,6 @@ inputs: | |
project: | ||
description: The project to install dependencies for | ||
required: true | ||
version: | ||
description: The version of the project to install dependencies for | ||
required: true | ||
|
||
runs: | ||
using: composite | ||
|
@@ -23,12 +20,3 @@ runs: | |
- name: Install | ||
run: yarn --immutable | ||
shell: bash | ||
|
||
- name: Install Nargo | ||
uses: noir-lang/[email protected] | ||
with: | ||
toolchain: ${{ inputs.version }} | ||
|
||
- name: Use Nargo | ||
run: nargo --version | ||
shell: bash |
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
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