Skip to content

docs: ドキュメントを英語に翻訳 #98

docs: ドキュメントを英語に翻訳

docs: ドキュメントを英語に翻訳 #98

Workflow file for this run

name: PR Push check
on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup workspace
uses: ./.github/actions/setup-workspace
- name: Build
run: pnpm run build
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup workspace
uses: ./.github/actions/setup-workspace
- name: Lint
run: pnpm run lint
type:
name: Type check
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup workspace
uses: ./.github/actions/setup-workspace
- name: Type check
run: pnpm run type-check