File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
packages/powersync_core/lib/src Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 11
11
uses : ./.github/workflows/prepare_wasm.yml
12
12
13
13
build :
14
- runs-on : macos -latest
14
+ runs-on : ubuntu -latest
15
15
permissions :
16
16
contents : write
17
17
Original file line number Diff line number Diff line change @@ -214,6 +214,13 @@ Future<void> downloadFile(
214
214
}
215
215
}
216
216
217
+ /// Copies WebAssembly modules from `packages/sqlite3_wasm_build/dist` into
218
+ /// `web/` .
219
+ ///
220
+ /// When we're running this setup script as part of our CI, a previous action
221
+ /// (`.github/actions/prepare/` ) will have put compiled assets into that folder.
222
+ /// Copying from there ensures we run web tests against our current SQLite web
223
+ /// build and avoids downloading from GitHub releases for every package we test.
217
224
Future <void > _copyPrecompiled (
218
225
Directory project, String wasmFile, String outputDir) async {
219
226
// Keep going up until we see the melos.yaml file indicating the workspace
You can’t perform that action at this time.
0 commit comments