Skip to content

chore: update prettier to version 3.4.1 (#343) #766

chore: update prettier to version 3.4.1 (#343)

chore: update prettier to version 3.4.1 (#343) #766

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: 'Check code quality'
on:
push:
branches:
- main
pull_request:
branches:
- '**'
jobs:
check-typescript:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22.x
- uses: pnpm/action-setup@v3
name: Install pnpm
with:
version: 9
run_install: true
- run: pnpm prisma generate
- run: pnpm tsc
check-prettier-and-eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22.x
- uses: pnpm/action-setup@v3
name: Install pnpm
with:
version: 9
run_install: true
- run: pnpm prisma generate
- run: pnpm run lint