Skip to content

Commit

Permalink
test: attempt to fix libcrypto test failure for RS tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vkarpov15 committed Jan 20, 2025
1 parent c89c47e commit c1ee8cc
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ name: Test
on:
pull_request:
paths:
- '.github/workflows/test.yml'
- 'package.json'
- 'index.js'
- 'lib/**'
- 'test/**.js'
- ".github/workflows/test.yml"
- "package.json"
- "index.js"
- "lib/**"
- "test/**.js"
push:
paths:
- '.github/workflows/test.yml'
- 'package.json'
- 'index.js'
- 'lib/**'
- 'test/**.js'
- ".github/workflows/test.yml"
- "package.json"
- "index.js"
- "lib/**"
- "test/**.js"
permissions:
contents: read

Expand Down Expand Up @@ -62,6 +62,8 @@ 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
Expand All @@ -74,7 +76,7 @@ jobs:
with:
name: coverage
path: coverage

test-deno:
runs-on: ubuntu-20.04
name: Deno tests
Expand Down

0 comments on commit c1ee8cc

Please sign in to comment.