-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: improve security by using GitHub secrets for private key
- Update GitHub Actions workflow to use TEST_RELAY_PRIVATE_KEY secret - Enhance entrypoint.sh service readiness checks - Remove hardcoded private key references Co-Authored-By: Nico Krause <[email protected]>
- Loading branch information
1 parent
2a0b0cb
commit 07dae7b
Showing
2 changed files
with
11 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,8 @@ jobs: | |
restore-keys: | | ||
${{ runner.os }}-buildx- | ||
- name: Set up Docker Compose | ||
env: | ||
TEST_RELAY_PRIVATE_KEY: ${{ secrets.TEST_RELAY_PRIVATE_KEY }} | ||
uses: hoverkraft-tech/[email protected] | ||
with: | ||
compose-file: "docker-compose-test.yml" | ||
|
@@ -35,4 +37,4 @@ jobs: | |
- name: Running-Tests | ||
run: | | ||
echo "🧪 Running tests..." | ||
docker compose -f docker-compose-test.yml exec relay-service npm test | ||
docker compose -f docker-compose-test.yml exec relay-service npm test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters