Feature/toast on status change #236
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: CI | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
[ | |
"demo/**", | |
"demo_markdown/**", | |
"thaw/**", | |
"thaw_components/**", | |
"thaw_utils/**", | |
] | |
branches: | |
- main | |
jobs: | |
stable: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
target: wasm32-unknown-unknown | |
override: true | |
- name: Install Trunk | |
uses: jetli/[email protected] | |
with: | |
version: "latest" | |
- name: Build | |
run: | | |
cd demo | |
trunk build --release | |
nightly: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
target: wasm32-unknown-unknown | |
override: true | |
- name: Install Trunk | |
uses: jetli/[email protected] | |
with: | |
version: "latest" | |
- name: Build | |
run: | | |
cd demo | |
trunk build --release --features nightly | |
stable-cargo-leptos: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
target: wasm32-unknown-unknown | |
override: true | |
- name: Install Trunk | |
uses: jetli/[email protected] | |
with: | |
version: "latest" | |
- name: Install Cargo BInstall | |
uses: cargo-bins/cargo-binstall@main | |
- name: Install Cargo Leptos | |
run: cargo binstall cargo-leptos -y | |
- name: Build | |
run: | | |
cd ./examples/ssr_axum | |
cargo leptos build --release | |
nightly-cargo-leptos: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
target: wasm32-unknown-unknown | |
override: true | |
- name: Install Trunk | |
uses: jetli/[email protected] | |
with: | |
version: "latest" | |
- name: Install Cargo BInstall | |
uses: cargo-bins/cargo-binstall@main | |
- name: Install Cargo Leptos | |
run: cargo binstall cargo-leptos -y | |
- name: Build | |
run: | | |
cd ./examples/ssr_axum | |
cargo leptos build --release --features nightly |