Skip to content

Commit 08004f8

Browse files
ci: clean up
1 parent f628c02 commit 08004f8

File tree

3 files changed

+8
-26
lines changed

3 files changed

+8
-26
lines changed

.github/workflows/main.yml

+1-19
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v2
10-
with:
11-
fetch-depth: 0 # This ensures you have the full git history
1210

1311
- name: Setup Node.js
1412
uses: actions/setup-node@v2
@@ -52,24 +50,8 @@ jobs:
5250
if: steps.node-modules-cache.outputs.cache-hit != 'true'
5351
run: yarn install --immutable
5452

55-
- name: Debug - List Processes
56-
run: ps aux
57-
5853
- run: yarn build
59-
60-
- name: Debug - List Processes
61-
run: ps aux
62-
63-
- name: Run tests with detailed output
64-
run: |
65-
echo "::group::Detailed Test Output"
66-
yarn test
67-
echo "::endgroup::"
68-
69-
- name: Get test coverage
70-
uses: coverallsapp/github-action@master
71-
with:
72-
github-token: ${{ secrets.GITHUB_TOKEN }}
54+
- run: yarn test
7355

7456
# Modified tmate step without the timeout-minutes option
7557
- name: Setup tmate session

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"bip-schnorr": "^0.6.2",
2525
"bip39": "^3.0.2",
2626
"bitcoin-networks": "^1.0.0",
27-
"cfd-dlc-js": "https://github.com/atomicfinance/cfd-dlc-js.git#v0.0.47",
27+
"cfd-dlc-js": "https://github.com/atomicfinance/cfd-dlc-js.git#v0.0.48",
2828
"cfd-js": "https://github.com/cryptogarageinc/cfd-js.git#v0.4.10",
2929
"chai": "^4.2.0",
3030
"chai-as-promised": "^7.1.1",
@@ -64,7 +64,7 @@
6464
"lint": "turbo run lint",
6565
"lint:fix": "turbo run lint:fix",
6666
"build": "turbo run build",
67-
"test": "yarn run test:unit && yarn run test:integration:sequential",
67+
"test": "yarn run test:unit",
6868
"test:unit": "turbo run test",
6969
"test:integration": "nyc --reporter=text --reporter=lcov cross-env NODE_ENV=test mocha --parallel --max-old-space-size=4096",
7070
"test:integration:sequential": "nyc --reporter=text --reporter=lcov cross-env NODE_ENV=test mocha --max-old-space-size=4096 --verbose --timeout 60000",

yarn.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -4420,9 +4420,9 @@ __metadata:
44204420
languageName: node
44214421
linkType: hard
44224422

4423-
"cfd-dlc-js@https://github.com/atomicfinance/cfd-dlc-js.git#v0.0.47":
4424-
version: 0.0.47
4425-
resolution: "cfd-dlc-js@https://github.com/atomicfinance/cfd-dlc-js.git#commit=b32d18d63a8f401781c40daf2028fa15278d9297"
4423+
"cfd-dlc-js@https://github.com/atomicfinance/cfd-dlc-js.git#v0.0.48":
4424+
version: 0.0.48
4425+
resolution: "cfd-dlc-js@https://github.com/atomicfinance/cfd-dlc-js.git#commit=3f40a7218329309578525b024172c55fd1252c25"
44264426
dependencies:
44274427
big-integer: ^1.6.26
44284428
cmake-js: 6.3.2
@@ -4433,7 +4433,7 @@ __metadata:
44334433
npm-run-all: ^4.1.5
44344434
prebuild-install: ^7.0.0
44354435
run-script-os: ^1.1.5
4436-
checksum: 111947ab3129a2f1eb5b3ee9e3d5ba8a5a0c77a8614d61cd53159c8c4dca91fd1a20c6fc9b7cc8af58b00d8fbb539c27423d9cac2134e0412cdefa9f1cfe31a6
4436+
checksum: 9dc16a0ede8c1eb4f0ee79e64c8e1863e8aec27db19b93cd4e0c1f6f0b326fddd8809b521258e7ef2c63aa9a33d4850098647f312984c2dccfd50735ef424f9e
44374437
languageName: node
44384438
linkType: hard
44394439

@@ -12816,7 +12816,7 @@ __metadata:
1281612816
bip-schnorr: ^0.6.2
1281712817
bip39: ^3.0.2
1281812818
bitcoin-networks: ^1.0.0
12819-
cfd-dlc-js: "https://github.com/atomicfinance/cfd-dlc-js.git#v0.0.47"
12819+
cfd-dlc-js: "https://github.com/atomicfinance/cfd-dlc-js.git#v0.0.48"
1282012820
cfd-js: "https://github.com/cryptogarageinc/cfd-js.git#v0.4.10"
1282112821
chai: ^4.2.0
1282212822
chai-as-promised: ^7.1.1

0 commit comments

Comments
 (0)