ci: remove unnecessary steps & cleanup (#118)

* refactor(ci): refactor GitHub Actions for better readablility

* upd

* remove ""
This commit is contained in:
Okinea Dev 2025-02-04 17:31:38 +00:00 committed by GitHub
parent 6fb6603cc1
commit 54cb141c5c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 63 additions and 56 deletions

View file

@ -1,23 +1,23 @@
name: Compare Bun Version
name: ⚖️ Compare Bun Version
description: Compare the version of Bun to a specified version
inputs:
bun-version:
description: "The version of Bun to compare against"
description: The version of Bun to compare against
required: true
default: "1.1.0"
runs:
using: "composite"
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