Merge pull request #179 from ccinoo/main #224
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: Lint CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v2 | |
| with: | |
| version: latest | |
| - name: Set node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18.x | |
| cache: pnpm | |
| - name: Install | |
| run: pnpm install --no-frozen-lockfile | |
| - name: Lint | |
| run: pnpm run lint |