Bump to latest frontend version 0.14.0 #82
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: Test container changes | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
# Check if any files in the /images directory were changed in this PR | |
detect-changes: | |
uses: ./.github/workflows/check-diff.yaml | |
with: | |
pattern: ^images/ | |
test-images: | |
needs: detect-changes | |
if: needs.detect-changes.outputs.changed == 'true' | |
uses: ./.github/workflows/run-test.yaml | |
with: | |
name: test_images |