Merge pull request #12 from powersync-ja/static-lib #45
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build SQLite3 WASM | |
on: | |
push: | |
branches: ["**"] | |
jobs: | |
compile_sqlite3_wasm: | |
strategy: | |
matrix: | |
os: [macos-latest] | |
name: Compile sqlite3 wasm for ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build wasm | |
uses: ./.github/actions/build-wasm |