This repository was archived by the owner on May 12, 2026. It is now read-only.
Added Chiliveri Rohith to people folder #1296
Workflow file for this run
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
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| types: [opened, synchronize] | |
| name: CI | |
| jobs: | |
| lint: | |
| name: Lint files | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| name: Install pnpm | |
| with: | |
| run_install: false | |
| - name: Install Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Format files | |
| run: pnpm run format | |
| env: | |
| CI: true | |
| - name: Lint files | |
| run: pnpm run lint | |
| env: | |
| CI: true |