Merge pull request #252 from digital-go-jp/update-v2-20251029 #245
  
    
      This file contains hidden or 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: | |
| push: | |
| branches-ignore: | |
| - main | |
| jobs: | |
| deploy: | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| name: ci | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 20 | |
| cache: "npm" | |
| - name: Install packages | |
| run: | | |
| npm ci | |
| - name: Lint | |
| run: | | |
| npm run lint |