1
0
mirror of https://github.com/sasjs/server.git synced 2025-12-10 11:24:35 +00:00

chore(workflow): install openssl 1.1 in actions

This commit is contained in:
2025-03-13 15:43:20 +05:00
parent f5018ce1df
commit af1a386b13

View File

@@ -45,6 +45,13 @@ jobs:
working-directory: ./api working-directory: ./api
run: npm ci 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 - name: Run Unit Tests
working-directory: ./api working-directory: ./api
run: npm test run: npm test