Skip to content

見出し内の太字パターン(との両方)を検出 (#22) #91

見出し内の太字パターン(との両方)を検出 (#22)

見出し内の太字パターン(との両方)を検出 (#22) #91

Workflow file for this run

name: test
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
name: "Test on Node.js ${{ matrix.node-version }}"
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20,22]
steps:
- name: checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
cache: "npm"
node-version: ${{ matrix.node-version }}
- name: Install
run: npm ci
- name: Test
run: npm test