-
-
Notifications
You must be signed in to change notification settings - Fork 541
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(website): Introduction to textlint (#986)
Co-authored-by: unvalley <38400669+unvalley@users.noreply.github.com>
- Loading branch information
Showing
14 changed files
with
1,236 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.