@@ -180,11 +180,18 @@ jobs:
180180 echo "Verifying storage bucket exists"
181181 supabase db query "select id, name from storage.buckets where id = 'test-bucket';"
182182
183+ - name : Verify packages in Verdaccio
184+ run : |
185+ echo "Verifying @supabase/supabase-js is available in Verdaccio..."
186+ npm view @supabase/supabase-js version --registry http://localhost:4873
187+ npm view @supabase/supabase-js --registry http://localhost:4873 | head -20
188+
183189 - name : Run Deno Tests
184190 if : ${{ matrix.deno == '1.x' }}
185191 env :
186192 STORAGE_JS_ENTRY : main
187193 npm_config_registry : http://localhost:4873
194+ DENO_NPM_REGISTRY : http://localhost:4873
188195 run : |
189196 cd packages/core/supabase-js/test/deno
190197 npm install
@@ -195,6 +202,7 @@ jobs:
195202 if : ${{ matrix.deno == '2.x' }}
196203 env :
197204 npm_config_registry : http://localhost:4873
205+ DENO_NPM_REGISTRY : http://localhost:4873
198206 run : |
199207 cd packages/core/supabase-js/test/deno
200208 npm install
@@ -337,6 +345,12 @@ jobs:
337345 - name : Install Playwright browsers and dependencies
338346 run : npx playwright install --with-deps
339347
348+ - name : Verify packages in Verdaccio
349+ run : |
350+ echo "Verifying @supabase/supabase-js is available in Verdaccio..."
351+ npm view @supabase/supabase-js version --registry http://localhost:4873
352+ npm view @supabase/supabase-js --registry http://localhost:4873 | head -20
353+
340354 - name : Run integration tests
341355 env :
342356 npm_config_registry : http://localhost:4873
@@ -410,6 +424,12 @@ jobs:
410424 echo "Verifying storage bucket exists"
411425 supabase db query "select id, name from storage.buckets where id = 'test-bucket';"
412426
427+ - name : Verify packages in Verdaccio
428+ run : |
429+ echo "Verifying @supabase/supabase-js is available in Verdaccio..."
430+ npm view @supabase/supabase-js version --registry http://localhost:4873
431+ npm view @supabase/supabase-js --registry http://localhost:4873 | head -20
432+
413433 - name : Install test dependencies and run tests
414434 env :
415435 npm_config_registry : http://localhost:4873
@@ -487,6 +507,12 @@ jobs:
487507 echo "Verifying storage bucket exists"
488508 supabase db query "select id, name from storage.buckets where id = 'test-bucket';"
489509
510+ - name : Verify packages in Verdaccio
511+ run : |
512+ echo "Verifying @supabase/supabase-js is available in Verdaccio..."
513+ npm view @supabase/supabase-js version --registry http://localhost:4873
514+ npm view @supabase/supabase-js --registry http://localhost:4873 | head -20
515+
490516 - name : Install dependencies and run tests
491517 env :
492518 npm_config_registry : http://localhost:4873
0 commit comments