ci: Remove setup-rust #3
Workflow file for this run
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
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
build-wasm: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup target add wasm32-wasip1-threads | |
- uses: oven-sh/setup-bun@v2 | |
- run: | | |
export CARGO_BUILD_TARGET=wasm32-wasip1-threads | |
bun run build --target wasm32-wasip1-threads | |
- uses: actions/upload-artifact@v4 | |
with: | |
path: highlight.*.wasm |