Avoid publishing Docker images in favour of external images #59
This file contains 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: 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 | |