Skip to content

feat(feature/posts): implement posts system #4

feat(feature/posts): implement posts system

feat(feature/posts): implement posts system #4

Workflow file for this run

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)