Skip to content

added determine-package action #4

added determine-package action

added determine-package action #4

name: prettier
on:
workflow_call:
inputs:
bun-version:
description: The version of Bun to use (default `latest`)
required: false
default: latest
type: string
operating-system:
description: The operating system to use (default `ubuntu-latest`)
required: false
default: ubuntu-latest
type: string
with-submodules:
description: Whether to include submodules when checking out the repository (default `false`)
required: false
default: 'false'
type: string
jobs:
prettier:
name: Prettier Checking
uses: aether-development/.github/workflows/reusable-bun-job.yml@main

Check failure on line 25 in .github/workflows/reusable-prettier.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/reusable-prettier.yml

Invalid workflow file

invalid value workflow reference: references to workflows must be prefixed with format 'owner/repository/' or './' for local workflows
with:
script-name: format:check
operating-system: ${{ inputs.operating-system }}
bun-version: ${{ inputs.bun-version }}
with-submodules: ${{ inputs.with-submodules }}