Skip to content

Commit c1ee8cc

Browse files
committed
test: attempt to fix libcrypto test failure for RS tests
1 parent c89c47e commit c1ee8cc

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

.github/workflows/test.yml

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ name: Test
22
on:
33
pull_request:
44
paths:
5-
- '.github/workflows/test.yml'
6-
- 'package.json'
7-
- 'index.js'
8-
- 'lib/**'
9-
- 'test/**.js'
5+
- ".github/workflows/test.yml"
6+
- "package.json"
7+
- "index.js"
8+
- "lib/**"
9+
- "test/**.js"
1010
push:
1111
paths:
12-
- '.github/workflows/test.yml'
13-
- 'package.json'
14-
- 'index.js'
15-
- 'lib/**'
16-
- 'test/**.js'
12+
- ".github/workflows/test.yml"
13+
- "package.json"
14+
- "index.js"
15+
- "lib/**"
16+
- "test/**.js"
1717
permissions:
1818
contents: read
1919

@@ -62,6 +62,8 @@ jobs:
6262
key: ${{ matrix.os }}-${{ matrix.mongodb }}
6363

6464
- run: npm install
65+
- name: Install libcrypto
66+
run: sudo apt-get update && sudo apt-get install -y libssl1.1
6567
- name: NPM Test without Coverage
6668
run: npm test
6769
if: matrix.coverage != true
@@ -74,7 +76,7 @@ jobs:
7476
with:
7577
name: coverage
7678
path: coverage
77-
79+
7880
test-deno:
7981
runs-on: ubuntu-20.04
8082
name: Deno tests

0 commit comments

Comments
 (0)