feat(FontStyle): Wrong base sizes for presets 5, 9 and 10 #741
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: CI | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
name: Run Tests | |
runs-on: self-hosted-novum-mac | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Build and Test | |
run: make test | |
- name: Extract Sceenshot diff from failed Tests | |
if: always() | |
run: make extract_tests_attachments | |
- name: Checkout Telefonica/github-actions repo | |
uses: actions/[email protected] | |
if: always() | |
with: | |
repository: Telefonica/github-actions | |
token: "${{ secrets.NOVUM_PRIVATE_REPOS }}" | |
path: .github/actions | |
- name: Check Tests result | |
uses: ./.github/actions/mistica/upload-failed-screenshots | |
if: always() | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
azure-account-name: ${{ secrets.AZURE_ACCOUNT_NAME }} | |
azure-account-key: ${{ secrets.AZURE_ACCOUNT_KEY }} | |
glob: 'tmp/test_output/diff_output/**/difference*.png' | |
test-suite-and-test-name-regex: '(?<=diff_output\/)(.*)(?=\/difference)' | |
test-suite-and-test-name-separator: '/' | |
ci-container-name: 'mistica-ios-ci-container' |