transform styled dom component usage for improved performance #396
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: SWC validation | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
rust: | |
name: Rust tests & lints | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Install stable toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: Enable caching | |
uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: packages/yak-swc | |
- name: Run cargo check | |
run: cargo check --manifest-path packages/yak-swc/Cargo.toml | |
- name: Run cargo test | |
run: cargo test --manifest-path packages/yak-swc/Cargo.toml | |
- name: Run cargo fmt | |
run: cargo fmt --manifest-path packages/yak-swc/Cargo.toml --all -- --check | |
- name: Run cargo clippy | |
run: cargo clippy --manifest-path packages/yak-swc/Cargo.toml |