Skip to content

fix: revert pre build js #898

fix: revert pre build js

fix: revert pre build js #898

Workflow file for this run

name: Code Quality & Optimization
on: [push]
env:
CARGO_TERM_COLOR: always
jobs:
optimize:
name: Dependency & Performance Checks
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Check for unused dependencies
uses: bnjbvr/cargo-machete@main
- name: Install cargo-udeps
run: cargo install cargo-udeps --locked
- name: Run cargo-udeps
run: cargo udeps
- name: Install cargo-bloat
run: cargo install cargo-bloat
- name: Analyze binary size
run: cargo bloat --release
- name: Install cargo-audit
run: cargo install cargo-audit
- name: Security audit
run: cargo audit
- name: Install cargo-deny
run: cargo install cargo-deny
- name: Check duplicate dependencies
run: cargo deny check duplicates