fix: cors url μμ #189
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
name: Build and Test with Gradle | |
on: | |
push: | |
branches: [ "dev" ] | |
pull_request: | |
branches: [ "dev" ] | |
permissions: | |
contents: read | |
checks: write | |
issues: write | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
environment: dev | |
# μ μμΌλ‘ μ¬μ©ν Vault νκ²½ λ³μ μ€μ | |
env: | |
VAULT_URI: ${{ secrets.VAULT_URI }} | |
VAULT_TOKEN: ${{ secrets.VAULT_TOKEN }} | |
VAULT_BACKEND: ${{ secrets.VAULT_BACKEND }} | |
VAULT_DEFAULT_CONTEXT: ${{ secrets.VAULT_DEFAULT_CONTEXT }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
# νκ²½ λ³μκ° μ λλ‘ μ€μ λμλμ§ μΆλ ₯ (λλ²κΉ μ©) | |
- name: Print Vault Environment Variables | |
run: | | |
echo "VAULT_URI: $VAULT_URI" | |
echo "VAULT_TOKEN: $VAULT_TOKEN" | |
echo "VAULT_BACKEND: $VAULT_BACKEND" | |
echo "VAULT_DEFAULT_CONTEXT: $VAULT_DEFAULT_CONTEXT" | |
- name: Setup Gradle | |
uses: gradle/actions/[email protected] | |
- name: Build and Test with Gradle | |
run: | | |
./gradlew build | |
./gradlew --info test | |
- name: Publish Unit Test Results | |
uses: EnricoMi/publish-unit-test-result-action@v1 | |
with: | |
files: build/test-results/**/*.xml | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v3 | |
with: | |
report_paths: '**/build/test-results/test/TEST-*.xml' |