Skip to content

Renovate pnpm to v9.12.3 #1164

Renovate pnpm to v9.12.3

Renovate pnpm to v9.12.3 #1164

Workflow file for this run

name: Static Analysis
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
name: 'analyze'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Setup Node
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
with:
cache: 'pnpm'
node-version: '20'
- name: Install
run: pnpm install
- name: Generate types
run: pnpm build:types
- name: Typecheck
run: pnpm typecheck
- name: ESLint
if: ${{ always() }}
run: pnpm lint:es
- name: Prettier
if: ${{ always() }}
run: pnpm lint:md