From 405896440614f8c913f5a3acd68486833529ed09 Mon Sep 17 00:00:00 2001 From: bailey Date: Fri, 14 Feb 2025 10:36:09 -0700 Subject: [PATCH] fix ordering of webpack builds --- .github/workflows/webpack.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/webpack.yml b/.github/workflows/webpack.yml index 674a1d9..b51034f 100644 --- a/.github/workflows/webpack.yml +++ b/.github/workflows/webpack.yml @@ -18,15 +18,15 @@ jobs: with: node-version: 'lts/*' - - name: "Build libmongocrypt" + - name: "Install dependencies" shell: bash run: | - npm run install:libmongocrypt + npm install --ignore-scripts - - name: "Install dependencies" + - name: "Build libmongocrypt and bindings" shell: bash run: | - npm install + npm run install:libmongocrypt - name: "Install dependencies in the Webpack bundle test package" shell: bash