We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a37bc50 commit a79be99Copy full SHA for a79be99
.github/workflows/ci.yml
@@ -26,5 +26,11 @@ jobs:
26
uses: actions/setup-node@v1
27
with:
28
node-version: ${{ matrix.node-version }}
29
+ # Old versions of bedrock use old libssl that Ubuntu no longer ships with; need manual install
30
+ - name: (Linux) Install libssl 1.1
31
+ if: runner.os == 'Linux'
32
+ run: |
33
+ wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_amd64.deb
34
+ sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2_amd64.deb
35
- run: npm install
36
- run: npm test
0 commit comments