Skip to content

Commit

Permalink
ci(github): new test for request-manager
Browse files Browse the repository at this point in the history
  • Loading branch information
karliatto committed Jan 22, 2025
1 parent 59ed858 commit ebf138f
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/test-request-manager.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: "[Test] request-manager"

on:
schedule:
# Runs at midnight UTC every day at 01:00 AM CET
- cron: "0 0 * * *"
pull_request:
paths:
- ".github/workflows/test-request-manager.yml"
- "packages/request-manager/**"
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
test-request-manager:
runs-on: ubuntu-latest
if: github.repository == 'trezor/trezor-suite'
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v4
with:
lfs: true

- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"

- run: yarn install --immutable
- run: yarn workspace @trezor/request-manager test:e2e

0 comments on commit ebf138f

Please sign in to comment.