From 23f26032e1587a6c0210de5d740baddb4be299cf Mon Sep 17 00:00:00 2001 From: premsgr77 Date: Fri, 17 Apr 2026 15:14:52 +0545 Subject: [PATCH 1/3] chore: update test ci made uniform --- .github/workflows/test.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d4d18c6ab..c7dc0f297 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,7 @@ -name: "@prefabs.tech/react Test" +name: "Test suite" -on: push +on: + push jobs: test: @@ -9,22 +10,19 @@ jobs: matrix: node-version: [18, 20, 22, 24] steps: - - uses: actions/checkout@v4 - name: Use node ${{ matrix.node-version }} - - - uses: actions/setup-node@v4 + - name: Checkout + uses: actions/checkout@v4 + - name: Use node ${{ matrix.node-version }} + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - - name: Setup pnpm and install dependencies uses: pnpm/action-setup@v4 with: run_install: | - recursive: true args: [--frozen-lockfile, --strict-peer-dependencies] - - name: Build packages run: pnpm build - - name: Run tests run: pnpm test From 2ecc867503f9a65359b19cd5234de0d095077480 Mon Sep 17 00:00:00 2001 From: premsgr77 Date: Fri, 17 Apr 2026 15:30:47 +0545 Subject: [PATCH 2/3] chore(ci): drop Node 18 from test matrix --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c7dc0f297..323d137d7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [18, 20, 22, 24] + node-version: [20, 22, 24] steps: - name: Checkout uses: actions/checkout@v4 From 43603ee6dec5e3af65aeba801ae47912c0807a03 Mon Sep 17 00:00:00 2001 From: premsgr77 Date: Fri, 17 Apr 2026 15:44:48 +0545 Subject: [PATCH 3/3] chore: update shipjs yml file --- .github/workflows/shipjs-trigger.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/shipjs-trigger.yml b/.github/workflows/shipjs-trigger.yml index a8d0d9a06..12aa716a4 100644 --- a/.github/workflows/shipjs-trigger.yml +++ b/.github/workflows/shipjs-trigger.yml @@ -4,7 +4,7 @@ on: types: - closed jobs: - build: + release: name: Release runs-on: ubuntu-latest if: github.event.pull_request.merged == true && startsWith(github.head_ref, 'releases/v') @@ -19,6 +19,7 @@ jobs: with: node-version: 24 registry-url: "https://registry.npmjs.org" + cache: "pnpm" - name: Setup pnpm and install dependencies uses: pnpm/action-setup@v4 with: @@ -27,7 +28,7 @@ jobs: args: [--frozen-lockfile, --strict-peer-dependencies] - run: | git config --global user.email "github-actions[bot]@users.noreply.github.com" - git config --global user.name "github-actions[bot]" + git config --global user.name "github-actions[bot]" - run: npx shipjs trigger env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}