From 91cbcaef57dc4dfe95b959407bb3bb1a8f9ab2c7 Mon Sep 17 00:00:00 2001 From: AlmightyHak Date: Wed, 4 Jun 2025 02:39:10 -0500 Subject: [PATCH] Update .github/workflows/build_pull_request.yml --- .github/workflows/build_pull_request.yml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build_pull_request.yml b/.github/workflows/build_pull_request.yml index d785ed3b..dd9e3baa 100644 --- a/.github/workflows/build_pull_request.yml +++ b/.github/workflows/build_pull_request.yml @@ -18,13 +18,17 @@ jobs: outputs: individualMatrix: ${{ steps.generate-matrices.outputs.individualMatrix }} steps: - - name: Set up Node.js container - run: | - docker run --rm -v "$PWD":/app -w /app node:18-bullseye sh -c "npm install && npm test" + - name: Checkout code manually + run: git clone https://kohiden.xyz/AlmightyHak/extensions-source.git . + + - name: Run in Node.js container manually + run: | + docker run --rm \ + -v "$(pwd)":/app \ + -w /app \ + node:18-bullseye \ + sh -c "npm install && npm test" - - name: Clone repo - uses: https://github.com/actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 - - name: Validate Gradle Wrapper uses: https://github.com/gradle/wrapper-validation-action@a494d935f4b56874c4a5a87d19af7afcf3a163d0 # v2