We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8e36c3 commit 68186cdCopy full SHA for 68186cd
1 file changed
.github/workflows/ci.yml
@@ -26,8 +26,17 @@ jobs:
26
- name: Install wasm target
27
run: rustup target add wasm32-unknown-unknown
28
29
+ - name: Cache worker-build
30
+ uses: actions/cache@v4
31
+ with:
32
+ path: ~/.cargo/bin/worker-build
33
+ key: ${{ runner.os }}-worker-build-0.7
34
+
35
- name: Install worker-build
- run: cargo install worker-build@^0.7
36
+ run: |
37
+ if ! command -v worker-build >/dev/null; then
38
+ cargo install worker-build@^0.7
39
+ fi
40
41
- name: Set up Bun
42
uses: oven-sh/setup-bun@v2
0 commit comments