From 7d1f69abd9832e54f75d38705852461966cf6ba2 Mon Sep 17 00:00:00 2001 From: Valeri Karpov Date: Mon, 20 Jan 2025 09:42:37 -0500 Subject: [PATCH] chore: correct location for libssl install --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d74d4e1121..68f170f625 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -62,8 +62,6 @@ jobs: key: ${{ matrix.os }}-${{ matrix.mongodb }} - run: npm install - - name: Install libcrypto - run: sudo apt-get update && sudo apt-get install -y libssl1.1 - name: NPM Test without Coverage run: npm test if: matrix.coverage != true @@ -115,6 +113,8 @@ jobs: uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0 with: node-version: 16 + - name: Install libcrypto + run: sudo apt-get update && sudo apt-get install -y libssl1.1 - run: npm install - name: Test run: npm run test-rs