build(deps-dev): Bump @csstools/css-calc from 3.1.0 to 3.1.1 #26489
Workflow file for this run
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: Build and Test SAF CLI Docker Image on every Pull Request or Push to Main | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| permissions: | |
| contents: read | |
| env: | |
| TEST_TAG: saf:testTag | |
| jobs: | |
| docker: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout the SAF Repository | |
| uses: actions/checkout@v5 | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build Docker Image | |
| id: docker_build | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: . | |
| push: false | |
| load: true # makes it available for the local docker executable | |
| # doesn't need multiplatform support since we're only running it in this workflow | |
| tags: ${{ env.TEST_TAG }} | |
| - name: Test | |
| run: | | |
| docker run --rm ${{ env.TEST_TAG }} |