Skip to content

Update dependency prettier to ^3.2.5 #566

Update dependency prettier to ^3.2.5

Update dependency prettier to ^3.2.5 #566

Workflow file for this run

name: CI
on:
push:
tags: [v*]
branches: [main]
pull_request:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: "./.nvmrc"
- name: Install dependencies
run: npm ci
- name: lint
run: npm run lint
- name: Check code format with Prettier
run: npm run format:check