Skip to content

Commit

Permalink
chore: yarn format:all result
Browse files Browse the repository at this point in the history
  • Loading branch information
szymonlesisz committed Mar 6, 2025
1 parent be67d22 commit 533d7ea
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 16 deletions.
22 changes: 11 additions & 11 deletions .github/actions/check-previous-test-runs/action.yml
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
name: 'Check Previous Runs'
description: 'Check if a previous run of a job was successful to skip tests'
name: "Check Previous Runs"
description: "Check if a previous run of a job was successful to skip tests"
inputs:
github_token:
description: 'GitHub token for accessing the API'
description: "GitHub token for accessing the API"
required: true
pr_branch:
description: 'The branch of the pull request'
description: "The branch of the pull request"
required: true
pr_created:
description: 'The ISO 8601 timestamp when the PR was created'
description: "The ISO 8601 timestamp when the PR was created"
required: true
repo:
description: 'The repository name'
description: "The repository name"
required: true
workflow_name:
description: 'The workflow name to filter runs'
description: "The workflow name to filter runs"
required: true
job_name:
description: 'The name of the job to check success'
description: "The name of the job to check success"
required: true
outputs:
skip_tests:
description: 'Indicates whether tests should be skipped'
description: "Indicates whether tests should be skipped"
value: ${{ steps.check-previous-runs.outputs.skip_tests }}
runs:
using: 'composite'
using: "composite"
steps:
- name: Check Previous Test Runs
id: check-previous-runs
Expand Down Expand Up @@ -66,4 +66,4 @@ runs:
echo "Previous successful job found: ${SUCCESSFUL_JOB_URL} - skipping the rest of the job"
echo "skip_tests=true" >> $GITHUB_OUTPUT
shell: bash
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/release-connect-intermediary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
run: |
# Cherry-pick the specified range of commits from the fetched develop branch
git cherry-pick -x ${{ github.event.inputs.cherry_pick_commit_sha_from }}^..${{ github.event.inputs.cherry_pick_commit_sha_to }}
- name: Push intermediary branch
env:
BRANCH_NAME: "intermediary-release-branch-of-release/${{ steps.get-current-branch.outputs.branch_name }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/template-connect-test-params.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ on:
type: "boolean"
required: false
default: false
# After migrating from testnet 3 to testnet 4 using `disable_cache_tx=true` should be required for tests where tx are used.
# After migrating from testnet 3 to testnet 4 using `disable_cache_tx=true` should be required for tests where tx are used.
disable_cache_tx:
description: "Disable Cache transactions (when `true` tests don't use cache for transactions)"
type: "string"
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/test-suite-desktop-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Check previous runs
id: check-previous-runs
if: github.event_name == 'pull_request' && github.run_attempt == 1
uses: './.github/actions/check-previous-test-runs'
uses: "./.github/actions/check-previous-test-runs"
with:
github_token: ${{ secrets.TREZOR_BOT_TOKEN }}
pr_branch: ${{ github.head_ref }}
Expand All @@ -63,7 +63,7 @@ jobs:
workflow_name: ${{ github.workflow }}
job_name: "${{ github.job }} (${{ join(matrix.*, ', ') }})"

# Electron requires unprivileged user namespaces to function properly.
# Electron requires unprivileged user namespaces to function properly.
# Disabling this security rule allows Electron to create sandboxed processes
# without requiring elevated privileges, which is essential for running the application.
# This is workaround until electron builder solves this issue in future release.
Expand Down Expand Up @@ -139,4 +139,3 @@ jobs:
env:
COMPOSE_FILE: ./docker/docker-compose.suite-desktop-ci.yml
run: docker compose down

0 comments on commit 533d7ea

Please sign in to comment.