chore(deps): update actions/download-artifact action to v5 #567
Workflow file for this run
This file contains hidden or 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: | |
| pull_request: {} | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| env: | |
| RUSTFLAGS: '-Dwarnings' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Rust toolchain | |
| run: rustup toolchain install stable --no-self-update --profile default --target wasm32-unknown-unknown | |
| - name: Set up Rust cache | |
| uses: swatinem/rust-cache@v2 | |
| with: | |
| cache-on-failure: true | |
| save-if: ${{ github.ref == 'refs/heads/main' }} | |
| - name: Check formatting | |
| run: cargo fmt --all --check | |
| - name: Lint | |
| run: cargo clippy --all-features | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| # TODO: Investigate why tests fail on stable toolchain. | |
| - name: Set up Rust toolchain | |
| run: rustup toolchain install nightly --no-self-update --profile default --target wasm32-unknown-unknown | |
| - name: Set up Rust cache | |
| uses: swatinem/rust-cache@v2 | |
| with: | |
| cache-on-failure: true | |
| save-if: ${{ github.ref == 'refs/heads/main' }} | |
| - name: Install Cargo Binary Install | |
| uses: cargo-bins/cargo-binstall@main | |
| - name: Install Trunk | |
| run: cargo binstall --force -y trunk | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 'lts/*' | |
| - name: Set up pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 'latest' | |
| # TODO: See comment above about nightly toolchain. | |
| - name: Test | |
| run: cargo +nightly test --all-features | |
| - name: Upload visual snapshot diffs | |
| uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: visual-snapshots-diff | |
| path: target/tmp/floating-ui/packages/dom/test-results |