From 74c36bcbda95f9cadca27d0b0a5585d17980b2f7 Mon Sep 17 00:00:00 2001 From: Phil Leggetter Date: Tue, 3 Feb 2026 19:38:08 +0000 Subject: [PATCH] fix: add checkout step to test-npm-install workflow The workflow uses a local action (.github/actions/test-npm-install) but was missing the actions/checkout step, causing the workflow to fail with "Can't find 'action.yml'" error. Co-authored-by: Cursor --- .github/workflows/test-npm-install.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test-npm-install.yml b/.github/workflows/test-npm-install.yml index 99d8132..3009158 100644 --- a/.github/workflows/test-npm-install.yml +++ b/.github/workflows/test-npm-install.yml @@ -99,6 +99,9 @@ jobs: platform: win32 runs-on: ${{ matrix.os }} steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Set up Node.js uses: actions/setup-node@v4 with: