feat(feature/posts): implement posts system #4
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: check | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| branches: | |
| - develop | |
| - dev | |
| jobs: | |
| check: | |
| name: Run checks | |
| runs-on: ubuntu-latest | |
| permissions: | |
| checks: write | |
| contents: write | |
| steps: | |
| - name: Check out Git repository | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Biome | |
| uses: biomejs/setup-biome@v2 | |
| - name: Run checks | |
| run: biome ci --error-on-warnings --no-errors-on-unmatched --changed --since="origin/${GITHUB_BASE_REF}" . | |
| - name: Compile with tsc | |
| run: npm i && (cd client && npx tsc --noEmit) && (cd server && npx tsc --noEmit) |