chore(deps): update dependency yeoman-test to v9 #103
Workflow file for this run
This file contains 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: Pull Request | |
on: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
REGISTRY: ghcr.io | |
jobs: | |
# # Uncomment to view GitHub context object | |
# view-context: | |
# # https://docs.github.com/en/actions/learn-github-actions/contexts | |
# name: View GitHub Context | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Echo GitHub context | |
# uses: satackey/action-js-inline@v0.0.2 | |
# with: | |
# script: | | |
# const github = require('@actions/github'); | |
# console.log(JSON.stringify(github, null, 2)); | |
build-backend: | |
name: Backend Image Build | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Log in to the Container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v6 | |
with: | |
context: ./ | |
push: true | |
tags: ${{ env.REGISTRY }}/${{ github.repository }}:${{ github.event.number }}-pr | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
build-args: | | |
REPO_LOCATION= |