Skip to content

Commit

Permalink
feat(website): Introduction to textlint (#986)
Browse files Browse the repository at this point in the history
Co-authored-by: unvalley <38400669+unvalley@users.noreply.github.com>
  • Loading branch information
Yuto Yoshino and unvalley authored Dec 6, 2023
1 parent 78ad1d1 commit 7719951
Show file tree
Hide file tree
Showing 14 changed files with 1,236 additions and 77 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/ja-translation.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Checks for Japanese Documentation

on:
pull_request:
branches:
- main
paths:
- "website/src/content/docs/ja/**"

jobs:
ja-docs-check:
name: Checks on JA Docs
runs-on: ubuntu-latest
steps:
- name: Checkout PR Branch
uses: actions/checkout@v4
- name: Cache pnpm modules
uses: actions/cache@v3
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-
- uses: pnpm/action-setup@v2.2.4
with:
version: 8
- name: Install libraries
working-directory: website
run: pnpm i
- name: Run textlint
working-directory: website
run: pnpm textlint
Loading

0 comments on commit 7719951

Please sign in to comment.