We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1734b79 commit 0e37b39Copy full SHA for 0e37b39
.github/workflows/compute-ci.yml
@@ -99,6 +99,12 @@ jobs:
99
working-directory: apps/dws
100
run: bun run install:workerd
101
102
+ - name: Initialize contract dependencies
103
+ working-directory: packages/contracts
104
+ run: |
105
+ forge install eth-infinitism/account-abstraction --no-git || true
106
+ forge install foundry-rs/forge-std --no-git || true
107
+
108
- name: Build contracts
109
working-directory: packages/contracts
110
run: forge build
.github/workflows/deploy-docs.yml
@@ -28,6 +28,11 @@ jobs:
28
with:
29
fetch-depth: 0
30
31
+ - name: Setup Node.js
32
+ uses: actions/setup-node@v4
33
+ with:
34
+ node-version: '20'
35
36
- name: Setup Bun
37
uses: oven-sh/setup-bun@v2
38
0 commit comments