Feat: prestasi warga form feature fe and integrations #137
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: codecheck | |
| on: | |
| pull_request: | |
| branches: | |
| - develop | |
| types: [opened, synchronize] | |
| jobs: | |
| code-check: | |
| name: Run eslint and typescript check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v3 | |
| with: | |
| version: 9 | |
| run_install: | | |
| - recursive: true | |
| args: [--frozen-lockfile] | |
| - name: Run code check | |
| run: pnpm run check |