docs: registries

This commit is contained in:
Jozef Steinhübl 2025-07-08 22:45:44 +02:00
parent 2b1c606e1d
commit b9c0f542fe
No known key found for this signature in database
GPG key ID: E6BC90C91973B08F
4 changed files with 40 additions and 17 deletions

View file

@ -197,7 +197,6 @@ jobs:
- name: Install from default registry
run: |
output=$(bun add is-odd --verbose --force 2>&1)
echo "$output"
if echo "$output" | grep -q "HTTP/1.1 GET https://registry.npmjs.org/is-odd"; then
echo "Successfully installed from default registry"
@ -208,10 +207,9 @@ jobs:
- name: Install from @types registry
run: |
output=$(bun add @types/bun --verbose --force)
echo "$output"
output=$(bun add @types/bun --verbose --force 2>&1)
if echo "$output" | grep -q "HTTP/1.1 GET https://registry.yarnpkg.com/@types/bun"; then
if echo "$output" | grep -q "HTTP/1.1 GET https://registry.yarnpkg.com/@types%2fbun"; then
echo "Successfully installed from @types registry"
else
echo "Failed to install from @types registry"