[VSC-1213] Enhance flash encryption #1487
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: UI Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
ui_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: "recursive" | |
- name: Run ui test | |
uses: ./.github/actions/idf | |
id: idfuitest | |
with: | |
run: /ui-entrypoint.sh | |
- name: See if screenshots are generated | |
if: failure() | |
run: ls /github/workspace/test-resources/screenshots | |
- name: Upload screenshots | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: screenshots | |
path: /github/workspace/test-resources/screenshots |