Skip to content

chore: opportunistically clean up containers for completed tasks #1285

chore: opportunistically clean up containers for completed tasks

chore: opportunistically clean up containers for completed tasks #1285

Workflow file for this run

name: Check Format and Lint
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22.x
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Check Format
run: |
pnpm format
git diff --exit-code
- name: Lint
run: pnpm lint --error-on-warnings