Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions .github/workflows/agent-release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release
name: Release Agent

on:
push:
Expand All @@ -22,7 +22,9 @@ jobs:
is-new-version: ${{ steps.check-package-version.outputs.is-new-version }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
persist-credentials: false

- name: Check package version and detect an update
id: check-package-version
Expand All @@ -40,23 +42,29 @@ jobs:
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
persist-credentials: false

- name: Setup pnpm
uses: pnpm/action-setup@v4

- name: Set up Node 24
uses: actions/setup-node@v4
with:
node-version: 24
cache: "pnpm"
registry-url: https://registry.npmjs.org

- name: Install pnpm
run: npm install -g pnpm

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Build the package
run: pnpm --filter agent run build

- name: Run tests
run: pnpm --filter agent run test

- name: Publish the package to npm registry
working-directory: packages/agent
run: pnpm publish --access public
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish Release
name: Release Array

on:
push:
Expand All @@ -11,11 +11,11 @@ on:
- "pnpm-lock.yaml"
- "package.json"
- "turbo.json"
- ".github/workflows/release.yml"
- ".github/workflows/array-release.yml"

concurrency:
group: release
cancel-in-progress: true
group: array-release
cancel-in-progress: false

jobs:
publish:
Expand All @@ -42,6 +42,7 @@ jobs:
with:
fetch-depth: 0
token: ${{ steps.app-token.outputs.token }}
persist-credentials: false

- name: Setup pnpm
uses: pnpm/action-setup@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
persist-credentials: false

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Code quality
name: Code Quality

on:
pull_request:
Expand All @@ -14,7 +14,7 @@ jobs:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
persist-credentials: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
persist-credentials: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
persist-credentials: false

Expand Down