apps/web mostly moved to repository pattern #1985
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: Code Quality | |
| on: [push] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: '18.x' | |
| - uses: pnpm/action-setup@v2 | |
| with: | |
| version: 8 | |
| - run: pnpm install | |
| - name: Linting and prettifying | |
| run: | | |
| pnpm lint | |
| pnpm prettier | |
| working-directory: ./ |