fix: replace uses of create_effect
internally with create_isomorphic_effect
(closes #1709)
#2134
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
name: Check Examples | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
get-leptos-changed: | |
uses: ./.github/workflows/get-leptos-changed.yml | |
get-examples-matrix: | |
uses: ./.github/workflows/get-examples-matrix.yml | |
test: | |
name: Check | |
needs: [get-leptos-changed, get-examples-matrix] | |
if: needs.get-leptos-changed.outputs.leptos_changed == 'true' | |
strategy: | |
matrix: ${{ fromJSON(needs.get-examples-matrix.outputs.matrix) }} | |
fail-fast: false | |
uses: ./.github/workflows/run-cargo-make-task.yml | |
with: | |
directory: ${{ matrix.directory }} | |
cargo_make_task: "check" | |
toolchain: nightly |