Update react types to v19 (major) #3237
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: Build Container image | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Build container image | |
uses: docker/build-push-action@v6 | |
with: | |
push: false | |
cache-from: type=gha | |
cache-to: type=gha |