Merge pull request #162 from EventTriangle/AZ400-305 #235
This file contains hidden or 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: Docker compose build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| workflow_dispatch: | |
| jobs: | |
| angular-build: | |
| name: Docker compose build | |
| runs-on: ${{ matrix.environment }} | |
| strategy: | |
| matrix: | |
| environment: | |
| - ubuntu-latest | |
| steps: | |
| - name: 'Checkout' | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Docker compose build | |
| run: | | |
| docker compose build | |
| - name: Docker compose up | |
| run: | | |
| docker compose up -d | |
| env: | |
| EVENT_TRIANGLE_AD_CLIENT_SECRET: 'TEST_SECRET' |