Skip to content
This repository was archived by the owner on Aug 16, 2026. It is now read-only.

fix: use heredoc for PROMPT to fix YAML block scalar indentation #29

fix: use heredoc for PROMPT to fix YAML block scalar indentation

fix: use heredoc for PROMPT to fix YAML block scalar indentation #29

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
build:
name: Build (Node ${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 18.x
- 20.x
- 22.x
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Build package
run: npm run build