Merge pull request #453 from besscroft/fix/admin-empty-states #829
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
| name: eslint | |
| on: [push, pull_request] | |
| jobs: | |
| eslint: | |
| name: Next Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout PicImpact | |
| uses: actions/checkout@v4 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| cache: "pnpm" | |
| - name: Install dependencies | |
| run: pnpm i --frozen-lockfile | |
| - name: Run ESLint | |
| run: pnpm run lint |