docs(posts): 理大祭の教室を修正 #931
Workflow file for this run
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
name: CI | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
format: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout your repository using git | |
uses: actions/checkout@v4 | |
- name: Setup Node and Bun | |
uses: jdx/mise-action@v2 | |
- name: Install dependencies | |
uses: ./.github/actions/install-dependencies | |
- name: Format | |
run: bun run format:check | |
lint: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout your repository using git | |
uses: actions/checkout@v4 | |
- name: Setup Node and Bun | |
uses: jdx/mise-action@v2 | |
- name: Install dependencies | |
uses: ./.github/actions/install-dependencies | |
- name: Lint | |
run: bun run lint | |
test: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout your repository using git | |
uses: actions/checkout@v4 | |
- name: Setup Node and Bun | |
uses: jdx/mise-action@v2 | |
- name: Install dependencies | |
uses: ./.github/actions/install-dependencies | |
- name: Test | |
run: bun run test | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout your repository using git | |
uses: actions/checkout@v4 | |
- name: Setup Node and Bun | |
uses: jdx/mise-action@v2 | |
- name: Install dependencies | |
uses: ./.github/actions/install-dependencies | |
- name: Build | |
run: bun run build | |
textlint: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout your repository using git | |
uses: actions/checkout@v4 | |
- name: Setup Node and Bun | |
uses: jdx/mise-action@v2 | |
- name: Install dependencies | |
uses: ./.github/actions/install-dependencies | |
- name: Lint text | |
run: bun run textlint |