Skip to content

Article: コンポーネント指向を支える技術 #23

Article: コンポーネント指向を支える技術

Article: コンポーネント指向を支える技術 #23

Workflow file for this run

name: "textlint"
on:
pull_request:
jobs:
textlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: "npm"
- run: npm ci
- run: npx textlint --fix articles/**/*.md
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3
bundler-cache: true
- run: bundle exec danger
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}