Skip to content

deps(deps-dev): bump typescript from 6.0.3 to 7.0.2 in /web #144

deps(deps-dev): bump typescript from 6.0.3 to 7.0.2 in /web

deps(deps-dev): bump typescript from 6.0.3 to 7.0.2 in /web #144

Workflow file for this run

name: Build Docker Images (PR)
on:
pull_request:
branches:
- master
- develop
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: read
strategy:
matrix:
include:
- service: backend
dockerfile: ./Dockerfile
context: .
- service: frontend
dockerfile: ./web/Dockerfile
context: web
steps:
- name: Checkout repository
uses: actions/checkout@v7
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Extract metadata (tags, labels)
id: meta
uses: docker/metadata-action@v6
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}-${{ matrix.service }}
tags: |
type=ref,event=pr
- name: Build Docker image (no push)
id: build
uses: docker/build-push-action@v7
with:
context: ${{ matrix.context }}
file: ${{ matrix.dockerfile }}
push: false
load: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max