mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-22 20:25:38 +00:00
27 lines
672 B
YAML
27 lines
672 B
YAML
name: 'Setup CA Certificates - Linux'
|
|
description: 'Setup CA certificates and start test server for custom CA certs tests on Linux'
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- name: Setup CA certificates
|
|
shell: bash
|
|
run: |
|
|
set -euo pipefail
|
|
|
|
cd tests/ssl/custom-ca-certs/server
|
|
|
|
echo "running certificate setup"
|
|
node scripts/generate-certs.js
|
|
|
|
- name: Start test server
|
|
shell: bash
|
|
run: |
|
|
set -euo pipefail
|
|
|
|
cd tests/ssl/custom-ca-certs/server
|
|
|
|
echo "starting server in background"
|
|
node index.js &
|
|
|
|
echo "server started with PID: $!"
|