Skip to content

Commit

Permalink
ci(continuous-integration): Add various secrets for test environment (#5
Browse files Browse the repository at this point in the history
)
  • Loading branch information
MathieuVeber authored Nov 14, 2023
1 parent 90fe2e5 commit c00f9d9
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ on:
SONAR_TOKEN:
description: Needed to run SonarCloud Scan
required: true
BREVO_API_KEY:
required: false
PRIVATE_KEY:
required: false
PUBLIC_KEY:
required: false

jobs:
build-test:
Expand Down Expand Up @@ -63,6 +69,10 @@ jobs:

- name: "Run Tests"
run: "npm run test"
env:
BREVO_API_KEY: ${{ secrets.BREVO_API_KEY }}
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
PUBLIC_KEY: ${{ secrets.PUBLIC_KEY }}

- name: SonarCloud Init
env:
Expand Down

0 comments on commit c00f9d9

Please sign in to comment.