This commit is contained in:
Okinea Dev 2025-02-04 09:01:55 +02:00
parent d12e61bc96
commit ef7e99fb2a
No known key found for this signature in database
GPG Key ID: 07944BC5E01E7B43

View File

@ -1,4 +1,4 @@
name: Compare Bun Version
name: ⚖️ Compare Bun Version
description: Compare the version of Bun to a specified version
inputs:
@ -10,14 +10,14 @@ inputs:
runs:
using: "composite"
steps:
- name: Get installed Bun version
- name: 🛠️ Get installed Bun version
id: bun
shell: bash
run: |
bun --version
echo "version=$(bun --version)" >> $GITHUB_OUTPUT
- name: Compare versions
- name: ⚖️ Compare versions
shell: bash
run: |
if [[ "${{ steps.bun.outputs.version }}" == "${{ inputs.bun-version }}" ]]; then