added determine-package action #4
This file contains hidden or 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: 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
|
||
| with: | ||
| script-name: format:check | ||
| operating-system: ${{ inputs.operating-system }} | ||
| bun-version: ${{ inputs.bun-version }} | ||
| with-submodules: ${{ inputs.with-submodules }} | ||