File tree Expand file tree Collapse file tree 2 files changed +25
-4
lines changed Expand file tree Collapse file tree 2 files changed +25
-4
lines changed Original file line number Diff line number Diff line change
1
+ name : Ethash Nightly
2
+ on :
3
+ schedule :
4
+ - cron : 0 1 * * *
5
+ workflow_dispatch :
6
+
7
+ env :
8
+ cwd : ${{github.workspace}}/packages/vm # Doesn't apper to matter
9
+
10
+ jobs :
11
+ test-ethash :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - uses : actions/checkout@v5
15
+
16
+ - uses : actions/setup-node@v4
17
+ with :
18
+ node-version : 20
19
+ cache : ' npm'
20
+
21
+ - run : npm ci
22
+ working-directory : ${{github.workspace}}
23
+
24
+ - run : npm run test
25
+ working-directory : ${{ github.workspace }}/packages/ethash
Original file line number Diff line number Diff line change 56
56
- run : npm run coverage
57
57
working-directory : ${{ github.workspace }}/packages/genesis
58
58
59
- # Run coverage for ethash
60
- - run : npm run coverage
61
- working-directory : ${{ github.workspace }}/packages/ethash
62
-
63
59
# Run coverage for wallet
64
60
- run : npm run coverage
65
61
working-directory : ${{ github.workspace }}/packages/wallet
You can’t perform that action at this time.
0 commit comments