Update Rust crate wasm-bindgen to v0.2.100 #4575
This file contains 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: Lint | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
- name: Install pnpm | |
run: corepack enable | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Lint ESLint | |
run: pnpm lint:eslint | |
- name: Lint Prettier | |
run: pnpm lint:prettier | |
- name: Install wasm-pack | |
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | |
- name: Build crates | |
run: pnpm build:crates | |
- name: TypeCheck | |
run: pnpm typecheck |