Skip to content

chore(deps): update pnpm to v9.13.2 #2124

chore(deps): update pnpm to v9.13.2

chore(deps): update pnpm to v9.13.2 #2124

Workflow file for this run

# Copyright 2019-2022 Tauri Programme within The Commons Conservancy
# SPDX-License-Identifier: Apache-2.0
# SPDX-License-Identifier: MIT
name: fmt check
on:
push:
branches:
- dev
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
cargo-fmt-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- run: cargo fmt --all -- --check
prettier-fmt-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: corepack enable
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
check-latest: true
- run: pnpm install
- run: pnpm format:check