ci: add codestyle ci (#1149)

pull/1151/head
Shotaro Nakamura 2025-05-02 16:51:42 +09:00 committed by GitHub
parent bed23c62f5
commit 0debb59474
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 18 additions and 0 deletions

18
.github/workflows/codestyle.yml vendored 100644
View File

@ -0,0 +1,18 @@
name: codestyle
on:
push:
branches: [main]
pull_request:
branches: ['*']
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- run: yarn
- run: yarn format
- run: yarn lint