Skip to content

ci: minor cleanup

ci: minor cleanup #79

Workflow file for this run

name: format check
on:
push:
branches:
- main
paths:
- '**.md'
- '**.yml'
- '**.yaml'
- '**.js'
- '**.json'
- '.github/workflows/format-check.yml'
pull_request:
types:
- opened
- edited
- synchronize
branches:
- main
paths:
- '**.md'
- '**.yml'
- '**.yaml'
- '**.js'
- '**.json'
- '.github/workflows/format-check.yml'
workflow_dispatch:
jobs:
check-format:
name: Format check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@main
- name: Run Prettier format check
run: npx prettier --check --log-level log '**.{md,yaml,yml,js,json}'