Skip to content

Bump anyhow from 1.0.87 to 1.0.94 in /src-tauri #744

Bump anyhow from 1.0.87 to 1.0.94 in /src-tauri

Bump anyhow from 1.0.87 to 1.0.94 in /src-tauri #744

Workflow file for this run

name: Lint Deskulpt tooling
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
RUST_BACKTRACE: 1
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Node setup and cache
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: pnpm
- name: Install shared dependencies
run: pnpm install --frozen-lockfile
- name: Lint @deskulpt-test/react
run: |
cd tooling/react
pnpm lint
- name: Lint @deskulpt-test/apis
run: |
cd tooling/apis
pnpm lint
- name: Lint @deskulpt-test/ui
run: |
cd tooling/ui
pnpm lint