Skip to content

fix: CSS specificity 強化とインラインリンクの変換除外 #6

fix: CSS specificity 強化とインラインリンクの変換除外

fix: CSS specificity 強化とインラインリンクの変換除外 #6

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
types: [opened, synchronize, reopened, ready_for_review]
paths:
- "**.ts"
- "**.json"
permissions:
contents: read
jobs:
ci:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
cache: npm
- run: npm ci
- name: Type check
run: npx tsc --noEmit
- name: Test
run: npm test
- name: Build
run: npm run build