Compare commits

..

2 Commits

Author SHA1 Message Date
Nhat Bui b3b920c0f6
Merge 437426cfc4 into 0debb59474 2025-05-02 15:04:12 +07:00
Shotaro Nakamura 0debb59474
ci: add codestyle ci (#1149) 2025-05-02 16:51:42 +09:00
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