Skip to content

DEV-443 Implement get for StuffPostsView #103

DEV-443 Implement get for StuffPostsView

DEV-443 Implement get for StuffPostsView #103

Workflow file for this run

name: Lint
on: pull_request
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v5
- name: Enable corepack
run: corepack enable
- name: Set up Node.js
uses: actions/setup-node@v5
with:
node-version: 22
# ESLint and Prettier must be in `package.json`
- name: Install Node.js dependencies
run: yarn install --frozen-lockfile
- name: Run linters
uses: wearerequired/lint-action@v2.3.0
with:
eslint: true
prettier: true
ruff:
name: Ruff (backend)
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./backend
steps:
- name: Check out Git repository
uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Set up Python
run: uv python install
- name: Install backend dependencies
run: uv sync --group dev
- name: Run Ruff lint check
run: uv run ruff check
- name: Run Ruff format check
run: uv run ruff format --check