Skip to content

build: added .pre-commit-config.yaml #14

build: added .pre-commit-config.yaml

build: added .pre-commit-config.yaml #14

Workflow file for this run

name: Lint
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Use Node.js 23.x
uses: actions/setup-node@v4
with:
node-version: 23.x
cache: npm
- name: Install dependencies
run: npm ci
- name: Run Prettier
run: npx prettier --check .