Skip to content

build(deps-dev): bump prettier from 3.7.4 to 3.8.1 (#165) #421

build(deps-dev): bump prettier from 3.7.4 to 3.8.1 (#165)

build(deps-dev): bump prettier from 3.7.4 to 3.8.1 (#165) #421

Workflow file for this run

name: Build
on:
push:
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js 24
uses: actions/setup-node@v4
with:
node-version: 24
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Lint
run: 'pnpm lint:check'
- name: Format
run: 'pnpm format:check'
- name: Build
run: pnpm build