ci: shell

This commit is contained in:
Jozef Steinhübl 2025-07-08 22:52:10 +02:00
parent 90cf21e375
commit fd8520fed1
No known key found for this signature in database
GPG key ID: E6BC90C91973B08F

View file

@ -183,10 +183,10 @@ jobs:
- windows-latest - windows-latest
steps: steps:
- name: Checkout - name: 📥 Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Setup Bun - name: 🛠️ Setup Bun
uses: ./ uses: ./
id: setup_bun id: setup_bun
with: with:
@ -194,7 +194,8 @@ jobs:
https://registry.npmjs.org https://registry.npmjs.org
@types:https://registry.yarnpkg.com @types:https://registry.yarnpkg.com
- name: Install from default registry - name: ▶️ Install from default registry
shell: bash
run: | run: |
output=$(bun add is-odd --verbose --force 2>&1) output=$(bun add is-odd --verbose --force 2>&1)
@ -205,7 +206,8 @@ jobs:
exit 1 exit 1
fi fi
- name: Install from @types registry - name: ▶️ Install from @types registry
shell: bash
run: | run: |
output=$(bun add @types/bun --verbose --force 2>&1) output=$(bun add @types/bun --verbose --force 2>&1)