Bump the cli group with 5 updates #1296
  
    
      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: | |
| merge_group: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| lint-and-test-cli-tool: | |
| runs-on: | |
| labels: ubuntu-latest-8-cores | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Setup Rust | |
| uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: 1.90.0 | |
| components: clippy, rustfmt | |
| - name: Install wasm-pack | |
| run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | |
| - name: Run clippy | |
| run: cargo clippy --all-targets --all-features -- --deny warnings | |
| - name: Run rustfmt | |
| run: cargo fmt --all -- --check | |
| - name: Run tests | |
| run: cargo test | |
| lint-and-test-webapp: | |
| runs-on: | |
| labels: ubuntu-latest-8-cores | |
| env: | |
| NODE_OPTIONS: --max_old_space_size=4096 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Install dependencies | |
| working-directory: ./ui/webapp | |
| run: yarn install --network-concurrency 1 | |
| - name: Run prettier | |
| working-directory: ./ui/webapp | |
| run: yarn format:diff | |
| - name: Run eslint | |
| working-directory: ./ui/webapp | |
| run: yarn lint | |
| - name: Run tests | |
| working-directory: ./ui/webapp | |
| run: yarn test | |
| lint-and-test-embed: | |
| runs-on: | |
| labels: ubuntu-latest-8-cores | |
| env: | |
| NODE_OPTIONS: --max_old_space_size=4096 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Install dependencies | |
| working-directory: ./ui/embed | |
| run: yarn install --network-concurrency 1 | |
| - name: Run prettier | |
| working-directory: ./ui/embed | |
| run: yarn format:diff | |
| - name: Run eslint | |
| working-directory: ./ui/embed | |
| run: yarn lint |