chore(deps-dev): Bump @types/react-dom from 19.2.3 to 19.2.4 in /web #881
This file contains hidden or 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 Build and Verify | |
| on: | |
| push: | |
| branches: [main] | |
| paths: &docker-paths | |
| - 'Dockerfile' | |
| - '.dockerignore' | |
| - 'go.mod' | |
| - 'go.sum' | |
| - 'cmd/**' | |
| - 'internal/**' | |
| - 'web/**' | |
| - 'schemas/**' | |
| - 'docs.go' | |
| - 'docs/graders/**' | |
| - '.github/workflows/docker-ci.yml' | |
| pull_request: | |
| branches: [main] | |
| paths: *docker-paths | |
| jobs: | |
| docker-build: | |
| name: Build and Verify Docker Image | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| lfs: true | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0 | |
| - name: Build Docker image | |
| uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7.3.0 | |
| with: | |
| context: . | |
| push: false | |
| load: true | |
| tags: waza:ci-${{ github.sha }} | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=min | |
| - name: Verify | |
| run: docker run --rm waza:ci-${{ github.sha }} --version |