build(deps): bump http-proxy-middleware from 2.0.6 to 2.0.10 in /angular #2712
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: Build website components | |
| on: | |
| # Trigger the workflow on push or pull request, | |
| # but only for the master branch | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build-website-portal: | |
| runs-on: ubuntu-latest | |
| env: | |
| APP_IMAGE_NAME: milobella/portal | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Build image | |
| if: success() | |
| run: | | |
| cd portal | |
| docker build -t ${APP_IMAGE_NAME}:dev . | |
| build-website-apps: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| component: ["menu", "login", "try-it", "abilities", "nlg"] | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Build image | |
| if: success() | |
| env: | |
| APPLICATION_NAME: ${{ matrix.component }} | |
| APP_IMAGE_NAME: milobella/website-app-${{ matrix.component }} | |
| run: | | |
| cd angular | |
| docker build -t ${APP_IMAGE_NAME}:dev --build-arg APPLICATION_NAME . |