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