Skip to content

Replace GitHub PAT authentication with GitHub App #77

Replace GitHub PAT authentication with GitHub App

Replace GitHub PAT authentication with GitHub App #77

Workflow file for this run

name: Code style
on:
push:
jobs:
prettier:
name: Code style
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22.x"
cache: "yarn"
- run: yarn install
- run: npx prettier --check .
actionlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check workflow files
run: |
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
./actionlint -color
shell: bash