Skip to content

Bump the cli group across 1 directory with 6 updates #1079

Bump the cli group across 1 directory with 6 updates

Bump the cli group across 1 directory with 6 updates #1079

Workflow file for this run

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@v4
- name: Setup Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.78.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@v4
- name: Cache node modules
uses: actions/cache@v4
with:
path: ./ui/webapp/node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- 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
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@v4
- name: Cache node modules
uses: actions/cache@v4
with:
path: ./ui/embed/node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- 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