From d0fb316114fff5a99e1005356fe4859f7ff0cf34 Mon Sep 17 00:00:00 2001 From: nike-getto Date: Mon, 29 Sep 2025 09:47:42 +0200 Subject: [PATCH 1/4] change --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9220ec127..5003cfd25 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@ # Filecoin System Test Matrix -> 💊😎 The "Red Pill" for Filecoin node implementations +> 💊😎 The "Red Pill" for Filecoin node implementations The Filecoin System Test Matrix is a dashboard with a detailed list of Filecoin features and behaviors and a mapping between those features and test suites, systems and subsystems that those features are related to. The main goal of this project is closing the discrepancy between specification and the actual state of implementations. -- The *official* resource for the expected behavior of Filecoin node implementations is the Filecoin Specification [^1]. It is written as *prose* and it's quite verbose (*and that's the way it should be*). -- The System Test Matrix can be used to evaluate the state of Filecoin node implementations (such as lotus [^2], venus [^3] etc) *at a glance* and help new contributors understand how the Filecoin network works. +- The _official_ resource for the expected behavior of Filecoin node implementations is the Filecoin Specification [^1]. It is written as _prose_ and it's quite verbose (_and that's the way it should be_). +- The System Test Matrix can be used to evaluate the state of Filecoin node implementations (such as lotus [^2], venus [^3] etc) _at a glance_ and help new contributors understand how the Filecoin network works. ## Components @@ -47,6 +47,7 @@ The CI scraper has it's own [README file](scraper/README.md) - Venus System Test Matrix: https://venus.systemtestmatrix.com/ --- + [^1]: https://spec.filecoin.io/ [^2]: https://github.com/filecoin-project/lotus [^3]: https://github.com/filecoin-project/venus From 51150827522ba6a1153625b503bf67707486f869 Mon Sep 17 00:00:00 2001 From: nike-getto Date: Mon, 29 Sep 2025 09:53:39 +0200 Subject: [PATCH 2/4] add node --- .github/workflows/deploy-storybook-on-demand.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/deploy-storybook-on-demand.yml b/.github/workflows/deploy-storybook-on-demand.yml index ddd3e2043..c7ec1da4a 100644 --- a/.github/workflows/deploy-storybook-on-demand.yml +++ b/.github/workflows/deploy-storybook-on-demand.yml @@ -65,6 +65,11 @@ jobs: core.exportVariable('GITHUB_PR_HEAD_SHA', pull_request.head.sha); core.exportVariable('S3_FOLDER', folder); + - name: Use Node.js 16 + uses: actions/setup-node@v3 + with: + node-version: "16" + # # Checkout the repository. # From 0e429880ec1c292464f2899efe07776b7dc05d40 Mon Sep 17 00:00:00 2001 From: nike-getto Date: Mon, 29 Sep 2025 09:55:31 +0200 Subject: [PATCH 3/4] comment --- .github/workflows/deploy-storybook-on-demand.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy-storybook-on-demand.yml b/.github/workflows/deploy-storybook-on-demand.yml index c7ec1da4a..b4b93f743 100644 --- a/.github/workflows/deploy-storybook-on-demand.yml +++ b/.github/workflows/deploy-storybook-on-demand.yml @@ -81,9 +81,9 @@ jobs: # # Install dependencies and build Storybook # - - name: Install dependencies - run: yarn install --frozen-lockfile && yarn build-storybook - working-directory: ./frontend + # - name: Install dependencies + # run: yarn install --frozen-lockfile && yarn build-storybook + # working-directory: ./frontend # # Upload storybook-static to S3 From b4b1733c5cad1222b0a0590f57289c6d4938c071 Mon Sep 17 00:00:00 2001 From: nike-getto Date: Mon, 29 Sep 2025 09:59:55 +0200 Subject: [PATCH 4/4] node v --- .../workflows/deploy-storybook-on-demand.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/deploy-storybook-on-demand.yml b/.github/workflows/deploy-storybook-on-demand.yml index b4b93f743..62b3fffd8 100644 --- a/.github/workflows/deploy-storybook-on-demand.yml +++ b/.github/workflows/deploy-storybook-on-demand.yml @@ -65,11 +65,6 @@ jobs: core.exportVariable('GITHUB_PR_HEAD_SHA', pull_request.head.sha); core.exportVariable('S3_FOLDER', folder); - - name: Use Node.js 16 - uses: actions/setup-node@v3 - with: - node-version: "16" - # # Checkout the repository. # @@ -81,9 +76,15 @@ jobs: # # Install dependencies and build Storybook # - # - name: Install dependencies - # run: yarn install --frozen-lockfile && yarn build-storybook - # working-directory: ./frontend + + - name: Use Node.js 16 + uses: actions/setup-node@v3 + with: + node-version: "16" + + - name: Install dependencies + run: yarn install --frozen-lockfile && yarn build-storybook + working-directory: ./frontend # # Upload storybook-static to S3