diff --git a/.github/workflows/ci-nodejs.yml b/.github/workflows/ci-nodejs.yml index 0de5e55..ff9467a 100644 --- a/.github/workflows/ci-nodejs.yml +++ b/.github/workflows/ci-nodejs.yml @@ -27,10 +27,11 @@ jobs: steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} cache: "npm" + cache-dependency-path: './bindings/node.js/package-lock.json' - run: npm ci working-directory: ./bindings/node.js - run: npm run test