From c384e3aa9977738a8f8e89c53ea3a958df64ffc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jozef=20Steinh=C3=BCbl?= Date: Tue, 8 Jul 2025 22:15:08 +0200 Subject: [PATCH] ci: registry install check --- .github/workflows/test.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ca5a70e..3511207 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -192,11 +192,13 @@ jobs: with: registries: | https://registry.npmjs.org/ - @myorg:https://username:password@registry.myorg.com/ - @another:https://registry.another.com/ - @partner:https://registry.partner.com/|basic_token + @scope:https://registry.npmjs.org/ - - name: Run Bun + - name: Install from default registry + run: | + bun add is-odd --verbose + + - name: Install from @scope default registry id: run_bun run: | - bun add @myorg/example --verbose + bun add @scope/is-odd --verbose