Skip to content

fix(bridge): proxy memory not being freed #424

fix(bridge): proxy memory not being freed

fix(bridge): proxy memory not being freed #424

Workflow file for this run

name: Check-style
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_id || github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
check-ts-style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install dependencies
run: npm i -D
- name: Prettier check
run: npm run prettier:check
check-rust-style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check style
run: cargo fmt -- --check