File tree 1 file changed +34
-0
lines changed
1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : " [Test] request-manager"
2
+
3
+ on :
4
+ schedule :
5
+ # Runs at midnight UTC every day at 01:00 AM CET
6
+ - cron : " 0 0 * * *"
7
+ pull_request :
8
+ paths :
9
+ - " .github/workflows/test-request-manager.yml"
10
+ - " packages/request-manager/**"
11
+ workflow_dispatch :
12
+
13
+ concurrency :
14
+ group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
15
+ cancel-in-progress : true
16
+
17
+ jobs :
18
+ test-request-manager :
19
+ runs-on : ubuntu-latest
20
+ if : github.repository == 'trezor/trezor-suite'
21
+ timeout-minutes : 60
22
+ steps :
23
+ - name : Checkout
24
+ uses : actions/checkout@v4
25
+ with :
26
+ lfs : true
27
+
28
+ - name : Setup node
29
+ uses : actions/setup-node@v4
30
+ with :
31
+ node-version-file : " .nvmrc"
32
+
33
+ - run : yarn install --immutable
34
+ - run : yarn workspace @trezor/request-manager test:e2e
You can’t perform that action at this time.
0 commit comments