We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c04c51 commit dfd0b3eCopy full SHA for dfd0b3e
.github/workflows/pr.yml
@@ -87,6 +87,24 @@ jobs:
87
- name: Install node modules
88
run: bun i --frozen-lockfile
89
90
+ - name: Set up Docker Buildx
91
+ uses: docker/setup-buildx-action@v3
92
+
93
+ - name: Build cargo-msfs image
94
+ uses: docker/build-push-action@v5
95
+ with:
96
+ context: .
97
+ file: Dockerfile
98
+ tags: navigation-data-interface-wasm-build
99
+ cache-from: type=gha
100
+ cache-to: type=gha
101
102
+ - name: Cache target directories
103
+ uses: actions/cache@v4
104
105
+ path: targets
106
+ key: rust-targets
107
108
- name: Build WASM
109
run: bun run build:wasm && bun run package
110
0 commit comments