Skip to content

fix: 全角の「?」と「!」のあとに、"または"が続く場合も許容する #1411

fix: 全角の「?」と「!」のあとに、"または"が続く場合も許容する

fix: 全角の「?」と「!」のあとに、"または"が続く場合も許容する #1411

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
build-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup NodeJS 18
uses: actions/setup-node@v4
with:
node-version: 18
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Install dependencies
run: pnpm install
- name: Test
run: pnpm test
- name: Build
run: pnpm build