[MPT-4225] Cover extensions runtime with tests #760
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: PR build and merge | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
push: | |
branches: | |
- main | |
- "release/**" | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: 'Create environment file' | |
run: touch .env | |
- name: 'Build test containers' | |
run: docker compose build app_test | |
- name: 'Run validation & test' | |
run: docker compose run --service-ports app_test | |
- name: 'Fix coverage paths for SonarCloud' | |
run: | | |
sed -i 's/\/extension\/adobe_vipm/\/home\/runner\/work\/swo-adobe-vipm-extension\/swo-adobe-vipm-extension\/adobe_vipm/g' coverage.xml | |
# - name: 'Run SonarCloud Scan' | |
# uses: SonarSource/sonarcloud-github-action@master | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
# - name: 'Run SonarQube Quality Gate check' | |
# uses: sonarsource/sonarqube-quality-gate-action@master | |
# timeout-minutes: 5 | |
# env: | |
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
- name: 'Stop containers' | |
if: always() | |
run: docker compose down |