Bump @typescript-eslint/eslint-plugin from 7.17.0 to 8.3.0 #130
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: Docker Image Creation Test | |
on: | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: read | |
packages: write | |
jobs: | |
build_docker_test_image: | |
name: Build Docker image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Prepare PR title | |
id: pr_title | |
run: | | |
PR_TITLE=$(echo "${{ github.event.pull_request.title }}" | tr ' /@+' '_') | |
echo "::set-output name=pr_title::${PR_TITLE}" | |
- name: Build Docker test image | |
run: | | |
docker build -t gxcko.pr:${{ steps.pr_title.outputs.pr_title }}-${{ github.event.pull_request.number }} . | |
docker save -o docker_image.tar gxcko.pr:${{ steps.pr_title.outputs.pr_title }}-${{ github.event.pull_request.number }} | |
- name: Save Docker image artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: docker-image-pr-${{ github.event.pull_request.number }} | |
path: docker_image.tar |