Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
tdejoigny-ledger committed Nov 13, 2024
1 parent 4338081 commit e360178
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions .github/workflows/nbgl_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,30 @@ on:
workflow_dispatch:

jobs:
test-access:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up GitHub CLI
uses: actions/setup-gh@v2
with:
token: ${{ secrets.CI_BOT_TOKEN }}

- name: Test access to ledger-secure-sdk repository
run: |
if gh api -X GET /repos/LedgerHQ/app-nbgl-test; then
echo "Access to the repository is successful."
else
echo "Failed to access the repository."
fi
run_NBGL_tests:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.CI_BOT_TOKEN }}
steps:


- name: Test access to app-ethereum repository
run: |
if gh issue list --repo LedgerHQ/app-ethereum; then
Expand Down

0 comments on commit e360178

Please sign in to comment.