Bump globals from 17.9.0 to 17.11.0 in /src/app (#170) #105
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: Deploy app | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - src/app/** | |
| - .github/workflows/app.yml | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| environment: Development | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 1 | |
| lfs: true | |
| submodules: true | |
| clean: true | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: 20.x | |
| cache: yarn | |
| cache-dependency-path: src/app/yarn.lock | |
| - name: Install dependencies | |
| run: | | |
| yarn install --frozen-lockfile | |
| working-directory: src/app | |
| - name: Build project | |
| run: | | |
| yarn build | |
| working-directory: src/app | |
| env: | |
| VITE_API_ROOT: ${{ secrets.VITE_API_ROOT }} | |
| VITE_AZURE_CLIENT_ID: ${{ secrets.VITE_AZURE_CLIENT_ID }} | |
| VITE_AZURE_AUTHORITY: ${{ secrets.VITE_AZURE_AUTHORITY }} | |
| - name: Package artifact | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| if-no-files-found: error | |
| name: app | |
| path: src/app/dist | |
| deploy: | |
| needs: build | |
| permissions: | |
| id-token: write | |
| runs-on: ubuntu-latest | |
| environment: Development | |
| steps: | |
| - name: Download artifact | |
| uses: actions/download-artifact@v8 | |
| with: | |
| name: app | |
| path: app | |
| - name: Azure CLI Login | |
| uses: azure/login@v3 | |
| with: | |
| client-id: ${{ secrets.AZURE_CLIENT_ID }} | |
| tenant-id: ${{ secrets.AZURE_TENANT_ID }} | |
| subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | |
| - name: Deploy to Azure App Service | |
| uses: azure/webapps-deploy@v3 | |
| with: | |
| app-name: app-projectestimate-ui-dev | |
| package: app |