-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add support for manual seal * Fixes * Wait for finalized * Automatically detect need to manual seal
- Loading branch information
1 parent
1c988cf
commit 408cd87
Showing
10 changed files
with
170 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ignores: ['ts-node'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,7 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@master | ||
with: | ||
node-version: 18.x | ||
node-version: 20.x | ||
- name: Use npm latest | ||
run: npm install -g npm@latest | ||
- name: Cache Node.js modules | ||
|
@@ -64,7 +64,7 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@master | ||
with: | ||
node-version: 18.x | ||
node-version: 20.x | ||
- name: Use npm latest | ||
run: npm install -g npm@latest | ||
- name: Cache Node.js modules | ||
|
@@ -86,7 +86,7 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@master | ||
with: | ||
node-version: 18.x | ||
node-version: 20.x | ||
- name: Use npm latest | ||
run: npm install -g npm@latest | ||
- name: Cache Node.js modules | ||
|
@@ -100,7 +100,7 @@ jobs: | |
- name: Install Packages | ||
run: npm ci | ||
- name: Setup dependencies | ||
run: docker-compose up -d | ||
run: docker compose -f ./docker-compose-test.yaml up -d | ||
- name: Sleep | ||
uses: kibertoad/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@master | ||
with: | ||
node-version: 18.x | ||
node-version: 20.x | ||
- name: Use npm latest | ||
run: npm install -g npm@latest | ||
- name: Cache Node.js modules | ||
|
@@ -52,7 +52,7 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@master | ||
with: | ||
node-version: 18.x | ||
node-version: 20.x | ||
- name: Use npm latest | ||
run: npm install -g npm@latest | ||
- name: Cache Node.js modules | ||
|
@@ -86,7 +86,7 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@master | ||
with: | ||
node-version: 18.x | ||
node-version: 20.x | ||
- name: Use npm latest | ||
run: npm install -g npm@latest | ||
- name: Cache Node.js modules | ||
|
@@ -100,7 +100,7 @@ jobs: | |
- name: Install Packages | ||
run: npm ci | ||
- name: Setup dependencies | ||
run: docker-compose up -d | ||
run: docker compose -f ./docker-compose-test.yaml up -d | ||
- name: Sleep | ||
uses: kibertoad/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
version: '3' | ||
services: | ||
dscp-node: | ||
image: digicatapult/dscp-node:latest | ||
command: --base-path /data/ | ||
--dev | ||
--manual-seal | ||
--unsafe-ws-external | ||
--unsafe-rpc-external | ||
--rpc-cors all | ||
ports: | ||
- 30333:30333 | ||
- 9944:9944 | ||
- 9933:9933 | ||
restart: on-failure |
Oops, something went wrong.