chore(deps): update dependency prettier to ~3.4.2 #570
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
name: 'Lint: node-20, ubuntu-latest' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
- name: Set node version to 20 | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4 | |
with: | |
node-version: 20 | |
cache: 'pnpm' | |
- name: Prepare | |
run: pnpm install --frozen-lockfile | |
- name: Check formatting | |
run: pnpm prettier --check . | |
- name: Lint | |
run: pnpm run lint | |
- name: Check types | |
run: pnpm run ts-check |