Skip to content

docs: ブログ記事を追加(2024/11/11) #3273

docs: ブログ記事を追加(2024/11/11)

docs: ブログ記事を追加(2024/11/11) #3273

Workflow file for this run

# Autofix
name: autofix.ci # needed to securely identify the workflow
on:
pull_request:
branches:
- main
permissions:
contents: read
jobs:
# Autofix
autofix:
name: Autofix
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [20]
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871
- name: Setup Node.js
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6
with:
node-version: ${{ matrix.node }}
- name: Setup pnpm
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2
id: pnpm-install
with:
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Setup pnpm cache
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- name: Run lint fix
run: pnpm lint:fix
- name: Run format
run: pnpm format
- name: Autofix
uses: autofix-ci/action@2891949f3779a1cafafae1523058501de3d4e944