Skip to content

ci: Update REUSE.yaml #15

ci: Update REUSE.yaml

ci: Update REUSE.yaml #15

Workflow file for this run

# SPDX-FileCopyrightText: 2025 Shun Sakai
#
# SPDX-License-Identifier: CC0-1.0
name: CI
on:
pull_request:
push:
branches:
- "main"
workflow_dispatch:
jobs:
prettier:
name: Prettier
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup Node.js environment
uses: actions/setup-node@v6
with:
node-version: 22
- name: Run formatter in check mode
run: npx prettier -c "**.{yaml,yml}"