feat: check the counter_isomorphic release build with the leptos_debuginfo flag (#3918)

This commit is contained in:
Saber Haj Rabiee
2025-05-04 12:22:04 -07:00
committed by GitHub
parent 61bf87439a
commit dc1885ad92

View File

@@ -160,6 +160,12 @@ jobs:
run: |
cd '${{ inputs.directory }}'
cargo make --no-workspace --profile=github-actions ci
# Check if the counter_isomorphic can be built with leptos_debuginfo cfg flag in release mode
- name: ${{ inputs.cargo_make_task }} with --cfg=leptos_debuginfo
if: contains(inputs.directory, 'counter_isomorphic')
run: |
cd '${{ inputs.directory }}'
RUSTFLAGS="$RUSTFLAGS --cfg leptos_debuginfo" cargo leptos build --release
- name: Clean up ${{ inputs.directory }}
if: always()
run: |