Moved commands to bun #1
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: Execute script | |
on: | |
workflow_call: | |
inputs: | |
script-name: | |
description: "Build script to execute" | |
type: string | |
required: true | |
jobs: | |
Run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
# We must fetch at least the immediate parents so that if this is | |
# a pull request then we can checkout the head. | |
fetch-depth: 2 | |
- name: Set up environment | |
uses: michijs/.github/.github/workflows/runtime/setup.yml@main | |
- name: Install dependencies | |
uses: michijs/.github/.github/workflows/runtime/install.yml@main | |
- name: Execute script | |
uses: michijs/.github/.github/workflows/runtime/run.yml@main | |
with: | |
script-name: ${{ inputs.script-name }} |