From f08850ce4ecf3f3cfdfa26e1c9d2874b09820fd9 Mon Sep 17 00:00:00 2001 From: Jeff Raymakers Date: Sat, 22 Jun 2024 12:06:36 -0700 Subject: [PATCH] python deps on win --- .github/workflows/NodeJS.yml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/NodeJS.yml b/.github/workflows/NodeJS.yml index 99412561..508a55d0 100644 --- a/.github/workflows/NodeJS.yml +++ b/.github/workflows/NodeJS.yml @@ -70,6 +70,9 @@ jobs: # target_arch: arm64 steps: + - name: Setup Python + uses: actions/setup-python@v4 + - name: Install Python dependencies run: pip install pycparser @@ -79,6 +82,9 @@ jobs: - name: Install NPM dependencies & Build Node bindings run: npm i + - name: Test High-Level API + run: npm run test-path api/test/api.test.ts + # - name: Update apt # shell: bash # run: | @@ -149,13 +155,16 @@ jobs: - name: Setup Python uses: actions/setup-python@v4 + - name: Install Python dependencies + run: pip install pycparser + - name: Checkout code uses: actions/checkout@v3 - name: Install NPM dependencies & Build Node bindings run: npm i - - name: API Test + - name: Test High-Level API run: npm run test-path api/test/api.test.ts # - name: Setup Ccache @@ -213,13 +222,16 @@ jobs: - name: Setup Python uses: actions/setup-python@v4 + - name: Install Python dependencies + run: pip install pycparser + - name: Checkout code uses: actions/checkout@v3 - name: Install NPM dependencies & Build Node bindings run: npm i - - name: API Test + - name: Test High-Level API run: npm run test-path api/test/api.test.ts # - name: Setup Node