Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,9 @@ jobs:
&& sudo apt-get update -y \
&& sudo apt-get install -y solc

- name: Install wasm-pack
uses: ./.github/actions/install-wasm-pack

- name: Install yq
run: |
sudo wget -qO- https://github.com/mikefarah/yq/releases/download/v4.45.1/yq_linux_amd64.tar.gz | sudo tar xz -C /usr/local/bin --transform='s|yq_linux_amd64|yq|' --no-same-owner
Expand All @@ -393,7 +396,8 @@ jobs:

- name: Install dependencies
working-directory: .
run: pnpm --version && pnpm install --frozen-lockfile
run: |
pnpm --version && pnpm install --frozen-lockfile && pnpm build:ts

Comment thread
ctrlc03 marked this conversation as resolved.
- name: Install Playwright browsers
working-directory: ./examples/CRISP
Expand All @@ -404,6 +408,7 @@ jobs:
with:
name: enclave-binary
path: ~/.cargo/bin/

- name: Make binaries executable
run: |
chmod +x ~/.cargo/bin/enclave
Expand Down
Loading
Loading