mirror of
https://github.com/sasjs/server.git
synced 2025-12-10 19:34:34 +00:00
chore(workflow): install openssl 1.1 in actions
This commit is contained in:
7
.github/workflows/build.yml
vendored
7
.github/workflows/build.yml
vendored
@@ -45,6 +45,13 @@ jobs:
|
||||
working-directory: ./api
|
||||
run: npm ci
|
||||
|
||||
# Ubuntu 22.04+ have moved to OpenSSL 3, so the older version isn't installed by default.
|
||||
# this is required for unit tests
|
||||
- name: Install OpenSSL 1.1
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt install -y libssl1.1 || sudo apt install -y libssl3
|
||||
|
||||
- name: Run Unit Tests
|
||||
working-directory: ./api
|
||||
run: npm test
|
||||
|
||||
Reference in New Issue
Block a user