Skip to content

Commit f3f22dc

Browse files
developer0hyeclaude
andcommitted
feat: US-063 - WASM compilation check in CI pipeline
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Signed-off-by: Yonghye Kwon <developer.0hye@gmail.com>
1 parent 15dc070 commit f3f22dc

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,17 @@ jobs:
4545
components: clippy
4646
- run: cargo clippy --workspace --all-targets -- -D warnings
4747

48+
wasm-check:
49+
name: WASM Check
50+
runs-on: ubuntu-latest
51+
steps:
52+
- uses: actions/checkout@v4
53+
- uses: dtolnay/rust-toolchain@stable
54+
with:
55+
targets: wasm32-unknown-unknown
56+
- run: cargo check --target wasm32-unknown-unknown -p office2pdf
57+
- run: cargo check --target wasm32-unknown-unknown -p office2pdf --features wasm
58+
4859
fmt:
4960
name: Format
5061
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)