From f37ab8d5ba76dfacb2e17f2b10e253761b1bbe38 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Mon, 20 Apr 2026 13:19:42 -0700 Subject: [PATCH] fix postman CI: install openapi-to-postmanv2 before running script It worked locally before because I haven't wiped my `node_modules` so I had this installed without realizing. --- .github/workflows/update-postman.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-postman.yml b/.github/workflows/update-postman.yml index 5f54052237..3ccf6301e7 100644 --- a/.github/workflows/update-postman.yml +++ b/.github/workflows/update-postman.yml @@ -14,6 +14,6 @@ jobs: - uses: actions/checkout@v5 - name: Update Postman Collection - run: npx --yes -p openapi-to-postmanv2 node tools/update_postman.js + run: npm install openapi-to-postmanv2 && node tools/update_postman.js env: POSTMAN_API_KEY: ${{ secrets.POSTMAN_API_KEY }}