From a30c278c134e87f27770161338add1a2f2acea5e Mon Sep 17 00:00:00 2001 From: neila <40727091+neila@users.noreply.github.com> Date: Thu, 10 Apr 2025 16:56:47 +0900 Subject: [PATCH 1/4] Delete .github/CODEOWNERS --- .github/CODEOWNERS | 1 - 1 file changed, 1 deletion(-) delete mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS deleted file mode 100644 index bff1fbf6..00000000 --- a/.github/CODEOWNERS +++ /dev/null @@ -1 +0,0 @@ -* @unchain-tech/sb-w3dev \ No newline at end of file From 2675bb22b7bb2ea245224987d345184740e8db4f Mon Sep 17 00:00:00 2001 From: neila <40727091+neila@users.noreply.github.com> Date: Thu, 10 Apr 2025 16:57:40 +0900 Subject: [PATCH 2/4] Update ci.yml --- .github/workflows/ci.yml | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6baee28c..964a33e5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,17 +1,17 @@ name: CI -on: [push] +on: [push, workflow_dispatch] jobs: setup: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: - node-version: 20.x + node-version: 22.x cache: 'yarn' - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: yarn-cache with: path: '**/node_modules' @@ -24,8 +24,8 @@ jobs: runs-on: ubuntu-latest needs: setup steps: - - uses: actions/checkout@v3 - - uses: actions/cache@v3 + - uses: actions/checkout@v4 + - uses: actions/cache@v4 with: path: '**/node_modules' key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} @@ -40,10 +40,14 @@ jobs: runs-on: ubuntu-latest needs: [setup, check] steps: - - uses: actions/checkout@v3 - - uses: actions/cache@v3 + - uses: actions/checkout@v4 + - uses: actions/cache@v4 with: path: '**/node_modules' key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} - name: integration_test run: yarn workspace contract test + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true From 8cf5cd1f88b0d7fb9d0742aafb46235438f93e12 Mon Sep 17 00:00:00 2001 From: neila <40727091+neila@users.noreply.github.com> Date: Thu, 10 Apr 2025 17:00:47 +0900 Subject: [PATCH 3/4] Update ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 964a33e5..c28165f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: path: '**/node_modules' key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} - name: Install packages - if: steps.yarn-cache.outputs.cache-hit != 'true' + # if: steps.yarn-cache.outputs.cache-hit != 'true' run: yarn install --immutable check: From 55b1e5f93a964ae30671ebe797ee70fa45eeb240 Mon Sep 17 00:00:00 2001 From: neila <40727091+neila@users.noreply.github.com> Date: Thu, 10 Apr 2025 17:02:52 +0900 Subject: [PATCH 4/4] Update ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c28165f8..964a33e5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: path: '**/node_modules' key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} - name: Install packages - # if: steps.yarn-cache.outputs.cache-hit != 'true' + if: steps.yarn-cache.outputs.cache-hit != 'true' run: yarn install --immutable check: