diff --git a/.github/workflows/test-on-push.yml b/.github/workflows/test-on-push.yml
index cea87e6a..36b6896e 100644
--- a/.github/workflows/test-on-push.yml
+++ b/.github/workflows/test-on-push.yml
@@ -16,8 +16,6 @@ jobs:
run: |
shellcheck --version && \
yamllint -v && \
- npm install && \
- npm run build && \
./fablo-build.sh
- name: Test simple network
diff --git a/README.md b/README.md
index 2d9e64ab..ae6fc577 100644
--- a/README.md
+++ b/README.md
@@ -2,20 +2,22 @@

+Fablo allows you to start Hyperledger Fabric network from a single config file. It's best for local development, CI processes and experimenting with various network configurations.
+
Fablo supports:
* Environment: Docker
* RAFT, solo and BFT consensus protocols
* Multiple organizations and channels
-* Chaincode installation and upgrade
+* Chaincode installation and upgrade (Node, Go, Java, CCaaS)
* REST API client for CA and chaincodes ([Fablo REST](https://github.com/fablo-io/fablo-rest))
* [Blockchain Explorer](https://github.com/hyperledger/blockchain-explorer) which can be enabled for each organization
-Visit [SUPPORTED_FEATURES.md](SUPPORTED_FEATURES.md) to see a list of features supported by Fablo.
+Visit [SUPPORTED_FEATURES.md](SUPPORTED_FEATURES.md) to see the full list of features supported by Fablo.
## See it in action
-[](https://www.youtube.com/watch?v=JqPNozCtHkQ)
+[>>> Watch the demo <<<](https://www.youtube.com/watch?v=5yn3_g6Cybw)
## Installation
@@ -699,3 +701,7 @@ We'd love to have you contribute! Please refer to our [contribution guidelines](
Fablo was originally created at [SoftwareMill](https://softwaremill.com) by [@Hejwo](https://github.com/Hejwo/) and [@dzikowski](https://github.com/dzikowski/).
In December 2021, Fablo joined [Hyperledger Labs](https://labs.hyperledger.org/).
+## Talks
+* [Simplifying Fabric Dev: New Features in Fablo](https://www.youtube.com/watch?v=5yn3_g6Cybw) by [@dzikowski](https://github.com/dzikowski), [dpereowei](https://github.com/dpereowei), and [@OsamaRab3](https://github.com/OsamaRab3) (November 2025)
+* [Kick-off your Hyperledger Fabric network](https://www.youtube.com/watch?v=JqPNozCtHkQ) by [@Hejwo](https://github.com/Hejwo) (Feburary 2021; Fablo was called "Fabrica" at that time)
+
diff --git a/fablo-build.sh b/fablo-build.sh
index a548f26b..bf6ed1eb 100755
--- a/fablo-build.sh
+++ b/fablo-build.sh
@@ -29,7 +29,7 @@ if [ "$(command -v nvm)" = "nvm" ]; then
set -u
fi
-npm install
+npm ci
npm run build:dist
# if --push is passed, then build for all platforms and push the image to the registry