Skip to content

Dependencies: Update all non-major dependencies #242

Dependencies: Update all non-major dependencies

Dependencies: Update all non-major dependencies #242

Workflow file for this run

name: Build and Deploy to Dev
on:
pull_request:
branches: [main]
paths-ignore:
- "**.md"
push:
branches: [main]
paths-ignore:
- "**.md"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
packages: write
jobs:
lint-client:
uses: ./.github/workflows/lint-client.yml
secrets: inherit
build:
needs: [lint-client]
uses: ./.github/workflows/build-and-push.yml
with:
release_tag: ${{ github.sha }}
secrets: inherit
deploy-dev:
needs: build
uses: ./.github/workflows/deploy.yml
with:
environment: prompt-dev-vm
client_image_tag: ${{ needs.build.outputs.client_image_tag }}
secrets: inherit