Skip to content

Commit

Permalink
add linterAll job
Browse files Browse the repository at this point in the history
  • Loading branch information
Taepper committed Dec 18, 2024
1 parent 94deabf commit 2a4c34b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -235,5 +235,21 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name == 'refs/heads/main'
steps:
- uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build linter image
uses: docker/build-push-action@v5
with:
context: .
push: false
target: linter
tags: ${{ env.DOCKER_TEST_IMAGE_NAME }}
cache-from: type=gha,scope=${{ github.ref_name }}-linter-image-cache
cache-to: type=gha,mode=max,scope=${{ github.ref_name }}-linter-image-cache
build-args: |
DEPENDENCY_IMAGE=${{ env.DOCKER_DEPENDENCY_IMAGE_NAME }}:commit-${{ github.event.pull_request.head.sha }}

0 comments on commit 2a4c34b

Please sign in to comment.