diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 7cbc2d1..d572d76 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -33,8 +33,8 @@ jobs: - name: Download circom (Macos) if: ${{ matrix.os == 'macos-latest'}} run: curl https://github.com/iden3/circom/releases/latest/download/circom-macos-amd64 -o /usr/local/bin/circom && chmod +x /usr/local/bin/circom - # - name: Install yarn - # run: npm install -g yarn + - name: Install yarn + run: npm install -g yarn - name: Install dependencies run: yarn - name: Publish binaries diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index e7f5d94..7c30d67 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -19,8 +19,8 @@ jobs: components: clippy - name: Download circom (Linux) run: wget https://github.com/iden3/circom/releases/latest/download/circom-linux-amd64 -O /usr/local/bin/circom && chmod +x /usr/local/bin/circom - # - name: Install yarn - # run: npm install -g yarn + - name: Install yarn + run: npm install -g yarn - name: Install dependencies run: yarn # - name: Create build folder diff --git a/package.json b/package.json index 135a905..f0e9901 100644 --- a/package.json +++ b/package.json @@ -14,6 +14,7 @@ "Yush G " ], "scripts": { + "install": "yarn workspaces -pt install", "postinstall": "cargo install --path ./packages/compiler", "test": "yarn workspaces -pt run test", "upload-binary": "yarn workspaces -pt run upload-binary"