Skip to content

Avoid publishing Docker images in favour of external images #59

Avoid publishing Docker images in favour of external images

Avoid publishing Docker images in favour of external images #59

Workflow file for this run

name: Pipeline
on:
pull_request:
push:
branches: ["*"]
jobs:
check:
name: Check formatting with Prettier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
- uses: oven-sh/setup-bun@v2
env:
HUSKY: 0
- run: bun install --frozen-lockfile
- uses: creyD/[email protected]
with:
prettier_options: --check .
dry: true
only_changed: true