glab-setup-git-identity 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.changeset/README.md +8 -0
- package/.changeset/config.json +11 -0
- package/.github/workflows/release.yml +372 -0
- package/.husky/pre-commit +1 -0
- package/.jscpd.json +20 -0
- package/.prettierignore +7 -0
- package/.prettierrc +10 -0
- package/CHANGELOG.md +143 -0
- package/LICENSE +24 -0
- package/README.md +455 -0
- package/bunfig.toml +3 -0
- package/deno.json +7 -0
- package/docs/case-studies/issue-13/README.md +195 -0
- package/docs/case-studies/issue-13/hive-mind-issue-960.json +23 -0
- package/docs/case-studies/issue-13/hive-mind-pr-961-diff.txt +773 -0
- package/docs/case-studies/issue-13/hive-mind-pr-961.json +126 -0
- package/docs/case-studies/issue-21/README.md +384 -0
- package/docs/case-studies/issue-21/ci-logs/run-20803315337.txt +1188 -0
- package/docs/case-studies/issue-21/ci-logs/run-20885464993.txt +1310 -0
- package/docs/case-studies/issue-21/issue-111-data.txt +15 -0
- package/docs/case-studies/issue-21/issue-113-data.txt +15 -0
- package/docs/case-studies/issue-21/pr-112-data.json +109 -0
- package/docs/case-studies/issue-21/pr-112-diff.patch +1336 -0
- package/docs/case-studies/issue-21/pr-114-data.json +126 -0
- package/docs/case-studies/issue-21/pr-114-diff.patch +879 -0
- package/docs/case-studies/issue-3/README.md +338 -0
- package/docs/case-studies/issue-3/created-issues.md +32 -0
- package/docs/case-studies/issue-3/issue-data.json +29 -0
- package/docs/case-studies/issue-3/original-format-release-notes.mjs +212 -0
- package/docs/case-studies/issue-3/reference-pr-59-diff.txt +614 -0
- package/docs/case-studies/issue-3/reference-pr-59.json +109 -0
- package/docs/case-studies/issue-3/release-v0.1.0.json +9 -0
- package/docs/case-studies/issue-3/repositories-with-same-script.json +22 -0
- package/docs/case-studies/issue-3/research-notes.md +33 -0
- package/docs/case-studies/issue-7/BEST-PRACTICES-COMPARISON.md +334 -0
- package/docs/case-studies/issue-7/FORMATTER-COMPARISON.md +649 -0
- package/docs/case-studies/issue-7/current-repository-analysis.json +70 -0
- package/docs/case-studies/issue-7/effect-template-analysis.json +178 -0
- package/eslint.config.js +91 -0
- package/examples/basic-usage.js +64 -0
- package/experiments/test-changeset-scripts.mjs +303 -0
- package/experiments/test-failure-detection.mjs +143 -0
- package/experiments/test-format-major-changes.mjs +49 -0
- package/experiments/test-format-minor-changes.mjs +52 -0
- package/experiments/test-format-no-hash.mjs +43 -0
- package/experiments/test-format-patch-changes.mjs +46 -0
- package/package.json +80 -0
- package/scripts/changeset-version.mjs +75 -0
- package/scripts/check-changesets.mjs +67 -0
- package/scripts/check-version.mjs +129 -0
- package/scripts/create-github-release.mjs +93 -0
- package/scripts/create-manual-changeset.mjs +89 -0
- package/scripts/detect-code-changes.mjs +194 -0
- package/scripts/format-github-release.mjs +83 -0
- package/scripts/format-release-notes.mjs +219 -0
- package/scripts/instant-version-bump.mjs +172 -0
- package/scripts/js-paths.mjs +177 -0
- package/scripts/merge-changesets.mjs +263 -0
- package/scripts/publish-to-npm.mjs +302 -0
- package/scripts/setup-npm.mjs +37 -0
- package/scripts/validate-changeset.mjs +265 -0
- package/scripts/version-and-commit.mjs +284 -0
- package/src/cli.js +386 -0
- package/src/index.d.ts +255 -0
- package/src/index.js +563 -0
- package/tests/index.test.js +137 -0
|
@@ -0,0 +1,1336 @@
|
|
|
1
|
+
diff --git a/docs/case-studies/issue-111/README.md b/docs/case-studies/issue-111/README.md
|
|
2
|
+
new file mode 100644
|
|
3
|
+
index 0000000..ce55504
|
|
4
|
+
--- /dev/null
|
|
5
|
+
+++ b/docs/case-studies/issue-111/README.md
|
|
6
|
+
@@ -0,0 +1,110 @@
|
|
7
|
+
+# Case Study: Issue #111 - JS Release Does Not Work
|
|
8
|
+
+
|
|
9
|
+
+## Timeline of Events
|
|
10
|
+
+
|
|
11
|
+
+### January 8, 2026 - CI Failure Discovery
|
|
12
|
+
+- **Time:** 02:22 - 02:24 UTC
|
|
13
|
+
+- **Trigger:** Push to main branch (`1730fae4a399750f320591a6dfd62cf40363f2ac`)
|
|
14
|
+
+- **Workflow:** JS CI/CD Pipeline (js.yml)
|
|
15
|
+
+- **Run ID:** 20803315337
|
|
16
|
+
+
|
|
17
|
+
+### Sequence of Events
|
|
18
|
+
+
|
|
19
|
+
+1. **02:22:24** - Lint and Format Check job starts
|
|
20
|
+
+2. **02:22:23** - Unit Tests (Bun on ubuntu-latest) starts
|
|
21
|
+
+3. **02:22:25** - Unit Tests (Bun on windows-latest) starts
|
|
22
|
+
+4. **02:22:24** - Unit Tests (Bun on macos-latest) starts
|
|
23
|
+
+5. **02:22:46** - Lint and Format Check completes successfully
|
|
24
|
+
+6. **02:22:29** - Ubuntu unit tests pass (0 failures)
|
|
25
|
+
+7. **02:22:32** - macOS unit tests pass (0 failures)
|
|
26
|
+
+8. **02:23:24** - Windows unit tests pass (0 failures)
|
|
27
|
+
+9. **02:23:32** - Release job starts
|
|
28
|
+
+10. **02:23:55** - Changeset version runs successfully
|
|
29
|
+
+11. **02:23:56** - npm install --package-lock-only fails with ERESOLVE
|
|
30
|
+
+12. **02:23:58** - Release job fails with exit code 1
|
|
31
|
+
+
|
|
32
|
+
+## Root Cause Analysis
|
|
33
|
+
+
|
|
34
|
+
+### Primary Root Cause
|
|
35
|
+
+The `changeset-version.mjs` script runs `npm install --package-lock-only` without the `--legacy-peer-deps` flag, causing peer dependency resolution failures.
|
|
36
|
+
+
|
|
37
|
+
+### Error Chain
|
|
38
|
+
+
|
|
39
|
+
+```
|
|
40
|
+
+npm error code ERESOLVE
|
|
41
|
+
+npm error ERESOLVE could not resolve
|
|
42
|
+
+
|
|
43
|
+
+npm error While resolving: @opentui/solid@0.1.60
|
|
44
|
+
+npm error Found: solid-js@1.9.10
|
|
45
|
+
+npm error solid-js@"^1.9.10" from the root project
|
|
46
|
+
+npm error peer solid-js@"^1.6.12" from @solid-primitives/event-bus@1.1.2
|
|
47
|
+
+
|
|
48
|
+
+npm error Could not resolve dependency:
|
|
49
|
+
+npm error peer solid-js@"1.9.9" from @opentui/solid@0.1.60
|
|
50
|
+
+```
|
|
51
|
+
+
|
|
52
|
+
+### Contributing Factors
|
|
53
|
+
+
|
|
54
|
+
+1. **Inconsistent npm flags:** The workflow file correctly uses `--legacy-peer-deps` for initial `npm install`, but the release scripts don't use this flag when syncing `package-lock.json`.
|
|
55
|
+
+
|
|
56
|
+
+2. **Dependency version mismatch:** The project uses `solid-js@1.9.10` but `@opentui/solid@0.1.60` requires exactly `solid-js@1.9.9` as a peer dependency.
|
|
57
|
+
+
|
|
58
|
+
+3. **Script design:** The release scripts are designed to run `npm install --package-lock-only` to synchronize the lock file after version bumps, but they don't account for the peer dependency conflicts.
|
|
59
|
+
+
|
|
60
|
+
+## Affected Files
|
|
61
|
+
+
|
|
62
|
+
+### Scripts That Need Updates
|
|
63
|
+
+
|
|
64
|
+
+| File | Line | Current Command | Required Fix |
|
|
65
|
+
+|------|------|-----------------|--------------|
|
|
66
|
+
+| `scripts/changeset-version.mjs` | 29 | `npm install --package-lock-only` | Add `--legacy-peer-deps` |
|
|
67
|
+
+| `scripts/instant-version-bump.mjs` | 111 | `cd js && npm install --package-lock-only` | Add `--legacy-peer-deps` |
|
|
68
|
+
+
|
|
69
|
+
+### Files That Correctly Use the Flag
|
|
70
|
+
+- `.github/workflows/js.yml` (all `npm install --legacy-peer-deps` commands)
|
|
71
|
+
+
|
|
72
|
+
+## Solution
|
|
73
|
+
+
|
|
74
|
+
+### Fix Implementation
|
|
75
|
+
+
|
|
76
|
+
+Add `--legacy-peer-deps` flag to all `npm install` commands that synchronize `package-lock.json`:
|
|
77
|
+
+
|
|
78
|
+
+**changeset-version.mjs (line 29):**
|
|
79
|
+
+```javascript
|
|
80
|
+
+// Before
|
|
81
|
+
+await $`npm install --package-lock-only`;
|
|
82
|
+
+
|
|
83
|
+
+// After
|
|
84
|
+
+await $`npm install --package-lock-only --legacy-peer-deps`;
|
|
85
|
+
+```
|
|
86
|
+
+
|
|
87
|
+
+**instant-version-bump.mjs (line 111):**
|
|
88
|
+
+```javascript
|
|
89
|
+
+// Before
|
|
90
|
+
+await $`cd js && npm install --package-lock-only`;
|
|
91
|
+
+
|
|
92
|
+
+// After
|
|
93
|
+
+await $`cd js && npm install --package-lock-only --legacy-peer-deps`;
|
|
94
|
+
+```
|
|
95
|
+
+
|
|
96
|
+
+## Verification
|
|
97
|
+
+
|
|
98
|
+
+After the fix is applied:
|
|
99
|
+
+1. The Release job should complete successfully
|
|
100
|
+
+2. The `package-lock.json` should be synchronized without peer dependency errors
|
|
101
|
+
+3. npm publish should proceed normally
|
|
102
|
+
+
|
|
103
|
+
+## Lessons Learned
|
|
104
|
+
+
|
|
105
|
+
+1. **Consistency is key:** When using npm flags like `--legacy-peer-deps`, ensure they are used consistently across all npm install commands in both workflow files and scripts.
|
|
106
|
+
+
|
|
107
|
+
+2. **Test release workflows:** Release workflows often run in different conditions than regular CI. Test them separately to catch issues like this.
|
|
108
|
+
+
|
|
109
|
+
+3. **Document npm quirks:** Peer dependency conflicts are common in JavaScript projects. Document the need for `--legacy-peer-deps` in contributing guidelines.
|
|
110
|
+
+
|
|
111
|
+
+## References
|
|
112
|
+
+
|
|
113
|
+
+- [GitHub Actions Run #20803315337](https://github.com/link-assistant/agent/actions/runs/20803315337/job/59752415630)
|
|
114
|
+
+- [CI Run Log (local copy)](./ci-run-20803315337.txt)
|
|
115
|
+
+- [npm ERESOLVE Documentation](https://docs.npmjs.com/cli/v8/commands/npm-install#strict-peer-deps)
|
|
116
|
+
+- [Issue #111](https://github.com/link-assistant/agent/issues/111)
|
|
117
|
+
diff --git a/docs/case-studies/issue-111/ci-run-20803315337.txt b/docs/case-studies/issue-111/ci-run-20803315337.txt
|
|
118
|
+
new file mode 100644
|
|
119
|
+
index 0000000..a62468e
|
|
120
|
+
--- /dev/null
|
|
121
|
+
+++ b/docs/case-studies/issue-111/ci-run-20803315337.txt
|
|
122
|
+
@@ -0,0 +1,1188 @@
|
|
123
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0046562Z Current runner version: '2.330.0'
|
|
124
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0079559Z ##[group]Runner Image Provisioner
|
|
125
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0080795Z Hosted Compute Agent
|
|
126
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0081845Z Version: 20251211.462
|
|
127
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0083137Z Commit: 6cbad8c2bb55d58165063d031ccabf57e2d2db61
|
|
128
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0084394Z Build Date: 2025-12-11T16:28:49Z
|
|
129
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0085493Z Worker ID: {d58d867f-d54d-47af-83bc-f6ad3acb253f}
|
|
130
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0086861Z ##[endgroup]
|
|
131
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0087670Z ##[group]Operating System
|
|
132
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0088554Z Ubuntu
|
|
133
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0089455Z 24.04.3
|
|
134
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0090162Z LTS
|
|
135
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0090948Z ##[endgroup]
|
|
136
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0092021Z ##[group]Runner Image
|
|
137
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0093219Z Image: ubuntu-24.04
|
|
138
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0094092Z Version: 20251215.174.1
|
|
139
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0096011Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20251215.174/images/ubuntu/Ubuntu2404-Readme.md
|
|
140
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0098805Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20251215.174
|
|
141
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0100784Z ##[endgroup]
|
|
142
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0105578Z ##[group]GITHUB_TOKEN Permissions
|
|
143
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0108848Z Actions: write
|
|
144
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0109725Z ArtifactMetadata: write
|
|
145
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0110715Z Attestations: write
|
|
146
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0111651Z Checks: write
|
|
147
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0112542Z Contents: write
|
|
148
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0113588Z Deployments: write
|
|
149
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0115208Z Discussions: write
|
|
150
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0116138Z Issues: write
|
|
151
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0116941Z Metadata: read
|
|
152
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0117909Z Models: read
|
|
153
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0118773Z Packages: write
|
|
154
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0119675Z Pages: write
|
|
155
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0120680Z PullRequests: write
|
|
156
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0121760Z RepositoryProjects: write
|
|
157
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0122721Z SecurityEvents: write
|
|
158
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0124050Z Statuses: write
|
|
159
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0124951Z ##[endgroup]
|
|
160
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0127935Z Secret source: Actions
|
|
161
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0129587Z Prepare workflow directory
|
|
162
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0577650Z Prepare all required actions
|
|
163
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.0631571Z Getting action download info
|
|
164
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.3825906Z Download action repository 'actions/checkout@v4' (SHA:34e114876b0b11c390a56381ad16ebd13914f8d5)
|
|
165
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.4805162Z Download action repository 'actions/setup-node@v4' (SHA:49933ea5288caeca8642d1e84afbd3f7d6820020)
|
|
166
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.6979439Z Complete job name: Lint and Format Check
|
|
167
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.7674693Z ##[group]Run actions/checkout@v4
|
|
168
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.7675511Z with:
|
|
169
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.7675913Z repository: link-assistant/agent
|
|
170
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.7676545Z token: ***
|
|
171
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.7676926Z ssh-strict: true
|
|
172
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.7677308Z ssh-user: git
|
|
173
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.7677709Z persist-credentials: true
|
|
174
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.7678148Z clean: true
|
|
175
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.7678542Z sparse-checkout-cone-mode: true
|
|
176
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.7679020Z fetch-depth: 1
|
|
177
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.7679396Z fetch-tags: false
|
|
178
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.7679809Z show-progress: true
|
|
179
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.7680199Z lfs: false
|
|
180
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.7680563Z submodules: false
|
|
181
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.7680956Z set-safe-directory: true
|
|
182
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.7681600Z ##[endgroup]
|
|
183
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.8778753Z Syncing repository: link-assistant/agent
|
|
184
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.8780510Z ##[group]Getting Git version info
|
|
185
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.8781190Z Working directory is '/home/runner/work/agent/agent'
|
|
186
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:24.8782180Z [command]/usr/bin/git version
|
|
187
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0072291Z git version 2.52.0
|
|
188
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0099351Z ##[endgroup]
|
|
189
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0114563Z Temporarily overriding HOME='/home/runner/work/_temp/5f902db2-0346-4854-868e-2841b3c79855' before making global git config changes
|
|
190
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0116948Z Adding repository directory to the temporary git global config as a safe directory
|
|
191
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0121115Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/agent/agent
|
|
192
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0165407Z Deleting the contents of '/home/runner/work/agent/agent'
|
|
193
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0169727Z ##[group]Initializing the repository
|
|
194
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0175777Z [command]/usr/bin/git init /home/runner/work/agent/agent
|
|
195
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0448475Z hint: Using 'master' as the name for the initial branch. This default branch name
|
|
196
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0449617Z hint: will change to "main" in Git 3.0. To configure the initial branch name
|
|
197
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0450709Z hint: to use in all of your new repositories, which will suppress this warning,
|
|
198
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0451527Z hint: call:
|
|
199
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0451944Z hint:
|
|
200
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0452464Z hint: git config --global init.defaultBranch <name>
|
|
201
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0453400Z hint:
|
|
202
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0454526Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
|
|
203
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0456288Z hint: 'development'. The just-created branch can be renamed via this command:
|
|
204
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0457894Z hint:
|
|
205
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0458798Z hint: git branch -m <name>
|
|
206
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0459775Z hint:
|
|
207
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0461166Z hint: Disable this message with "git config set advice.defaultBranchName false"
|
|
208
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0463406Z Initialized empty Git repository in /home/runner/work/agent/agent/.git/
|
|
209
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0469630Z [command]/usr/bin/git remote add origin https://github.com/link-assistant/agent
|
|
210
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0504787Z ##[endgroup]
|
|
211
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0506180Z ##[group]Disabling automatic garbage collection
|
|
212
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0509623Z [command]/usr/bin/git config --local gc.auto 0
|
|
213
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0541086Z ##[endgroup]
|
|
214
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0544472Z ##[group]Setting up auth
|
|
215
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0548064Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
|
|
216
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0579657Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
|
|
217
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0934836Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
|
|
218
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.0967877Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
|
|
219
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.1187676Z [command]/usr/bin/git config --local --name-only --get-regexp ^includeIf\.gitdir:
|
|
220
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.1227547Z [command]/usr/bin/git submodule foreach --recursive git config --local --show-origin --name-only --get-regexp remote.origin.url
|
|
221
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.1447387Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
|
|
222
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.1482312Z ##[endgroup]
|
|
223
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.1483574Z ##[group]Fetching the repository
|
|
224
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.1494088Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +1730fae4a399750f320591a6dfd62cf40363f2ac:refs/remotes/origin/main
|
|
225
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.6619596Z From https://github.com/link-assistant/agent
|
|
226
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.6621203Z * [new ref] 1730fae4a399750f320591a6dfd62cf40363f2ac -> origin/main
|
|
227
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.6654096Z ##[endgroup]
|
|
228
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.6655434Z ##[group]Determining the checkout info
|
|
229
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.6658337Z ##[endgroup]
|
|
230
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.6663734Z [command]/usr/bin/git sparse-checkout disable
|
|
231
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.6705720Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig
|
|
232
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.6733527Z ##[group]Checking out the ref
|
|
233
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.6737540Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main
|
|
234
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.7097793Z Switched to a new branch 'main'
|
|
235
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.7100654Z branch 'main' set up to track 'origin/main'.
|
|
236
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.7108489Z ##[endgroup]
|
|
237
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.7141976Z [command]/usr/bin/git log -1 --format=%H
|
|
238
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.7164205Z 1730fae4a399750f320591a6dfd62cf40363f2ac
|
|
239
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.7471486Z ##[group]Run actions/setup-node@v4
|
|
240
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.7472580Z with:
|
|
241
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.7473529Z node-version: 20.x
|
|
242
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.7474425Z always-auth: false
|
|
243
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.7475315Z check-latest: false
|
|
244
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.7476509Z token: ***
|
|
245
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.7477330Z ##[endgroup]
|
|
246
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.9244395Z Found in cache @ /opt/hostedtoolcache/node/20.19.6/x64
|
|
247
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:25.9249875Z ##[group]Environment details
|
|
248
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:28.7906176Z node: v20.19.6
|
|
249
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:28.7906646Z npm: 10.8.2
|
|
250
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:28.7906955Z yarn: 1.22.22
|
|
251
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:28.7908458Z ##[endgroup]
|
|
252
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:28.8018808Z ##[group]Run npm install --legacy-peer-deps
|
|
253
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:28.8019214Z [36;1mnpm install --legacy-peer-deps[0m
|
|
254
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:28.8066524Z shell: /usr/bin/bash -e {0}
|
|
255
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:28.8066805Z ##[endgroup]
|
|
256
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:39.9461174Z
|
|
257
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:39.9467918Z > @link-assistant/agent@0.7.0 prepare
|
|
258
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:39.9468359Z > cd .. && husky || true
|
|
259
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:39.9468579Z
|
|
260
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:39.9983274Z
|
|
261
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:39.9984017Z added 658 packages, and audited 659 packages in 11s
|
|
262
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:39.9984691Z
|
|
263
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:39.9985037Z 143 packages are looking for funding
|
|
264
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:39.9985578Z run `npm fund` for details
|
|
265
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:40.0006185Z
|
|
266
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:40.0006671Z 2 high severity vulnerabilities
|
|
267
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:40.0007039Z
|
|
268
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:40.0007277Z To address all issues, run:
|
|
269
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:40.0007739Z npm audit fix
|
|
270
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:40.0007944Z
|
|
271
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:40.0008167Z Run `npm audit` for details.
|
|
272
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:40.0313068Z ##[group]Run npm run lint
|
|
273
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:40.0313370Z [36;1mnpm run lint[0m
|
|
274
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:40.0347033Z shell: /usr/bin/bash -e {0}
|
|
275
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:40.0347281Z ##[endgroup]
|
|
276
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:40.1407611Z
|
|
277
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:40.1408183Z > @link-assistant/agent@0.7.0 lint
|
|
278
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:40.1408664Z > eslint .
|
|
279
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:40.1408819Z
|
|
280
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:42.4337885Z ##[group]Run npm run format:check
|
|
281
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:42.4338355Z [36;1mnpm run format:check[0m
|
|
282
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:42.4380538Z shell: /usr/bin/bash -e {0}
|
|
283
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:42.4380910Z ##[endgroup]
|
|
284
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:42.5517737Z
|
|
285
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:42.5518313Z > @link-assistant/agent@0.7.0 format:check
|
|
286
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:42.5518876Z > prettier --check .
|
|
287
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:42.5519116Z
|
|
288
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:42.6346780Z Checking formatting...
|
|
289
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:45.9837191Z All matched files use Prettier code style!
|
|
290
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.0243323Z ##[group]Run npm run check:file-size
|
|
291
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.0243652Z [36;1mnpm run check:file-size[0m
|
|
292
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.0276889Z shell: /usr/bin/bash -e {0}
|
|
293
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.0277139Z ##[endgroup]
|
|
294
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.1348735Z
|
|
295
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.1349513Z > @link-assistant/agent@0.7.0 check:file-size
|
|
296
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.1350158Z > node ../scripts/check-file-size.mjs
|
|
297
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.1350399Z
|
|
298
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.1636798Z
|
|
299
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.1637562Z Checking JavaScript files for maximum 1000 lines...
|
|
300
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.1637963Z
|
|
301
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.1801349Z ā All files are within the line limit
|
|
302
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.1801745Z
|
|
303
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.1948469Z Post job cleanup.
|
|
304
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.3602083Z Post job cleanup.
|
|
305
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.4528149Z [command]/usr/bin/git version
|
|
306
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.4564021Z git version 2.52.0
|
|
307
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.4615607Z Temporarily overriding HOME='/home/runner/work/_temp/b83b4053-9eab-437a-a5e5-099578643cb5' before making global git config changes
|
|
308
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.4617169Z Adding repository directory to the temporary git global config as a safe directory
|
|
309
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.4621754Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/agent/agent
|
|
310
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.4654897Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
|
|
311
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.4687141Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
|
|
312
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.4911940Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
|
|
313
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.4932018Z http.https://github.com/.extraheader
|
|
314
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.4944323Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
|
|
315
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.4973872Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
|
|
316
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.5189598Z [command]/usr/bin/git config --local --name-only --get-regexp ^includeIf\.gitdir:
|
|
317
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.5219355Z [command]/usr/bin/git submodule foreach --recursive git config --local --show-origin --name-only --get-regexp remote.origin.url
|
|
318
|
+
+Lint and Format Check UNKNOWN STEP 2026-01-08T02:22:46.5536985Z Cleaning up orphan processes
|
|
319
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6491059Z Current runner version: '2.330.0'
|
|
320
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6514654Z ##[group]Runner Image Provisioner
|
|
321
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6515508Z Hosted Compute Agent
|
|
322
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6516147Z Version: 20251211.462
|
|
323
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6516750Z Commit: 6cbad8c2bb55d58165063d031ccabf57e2d2db61
|
|
324
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6517401Z Build Date: 2025-12-11T16:28:49Z
|
|
325
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6518145Z Worker ID: {9e934110-7f5c-422e-b2c4-d34b80b387d6}
|
|
326
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6518820Z ##[endgroup]
|
|
327
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6519343Z ##[group]Operating System
|
|
328
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6519997Z Ubuntu
|
|
329
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6520446Z 24.04.3
|
|
330
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6520888Z LTS
|
|
331
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6521417Z ##[endgroup]
|
|
332
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6522193Z ##[group]Runner Image
|
|
333
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6522772Z Image: ubuntu-24.04
|
|
334
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6523363Z Version: 20251215.174.1
|
|
335
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6524381Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20251215.174/images/ubuntu/Ubuntu2404-Readme.md
|
|
336
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6525984Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20251215.174
|
|
337
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6526999Z ##[endgroup]
|
|
338
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6528388Z ##[group]GITHUB_TOKEN Permissions
|
|
339
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6530487Z Contents: write
|
|
340
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6531037Z Metadata: read
|
|
341
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6531608Z ##[endgroup]
|
|
342
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6534204Z Secret source: Actions
|
|
343
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6535104Z Prepare workflow directory
|
|
344
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6861711Z Prepare all required actions
|
|
345
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.6900626Z Getting action download info
|
|
346
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:23.9989915Z Download action repository 'actions/checkout@v4' (SHA:34e114876b0b11c390a56381ad16ebd13914f8d5)
|
|
347
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.1173400Z Download action repository 'oven-sh/setup-bun@v2' (SHA:b7a1c7ccf290d58743029c4f6903da283811b979)
|
|
348
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.4169230Z Complete job name: Unit Tests (Bun on ubuntu-latest)
|
|
349
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.4874125Z ##[group]Run actions/checkout@v4
|
|
350
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.4874940Z with:
|
|
351
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.4875314Z ref: refs/heads/main
|
|
352
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.4875964Z token: ***
|
|
353
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.4876368Z repository: link-assistant/agent
|
|
354
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.4876853Z ssh-strict: true
|
|
355
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.4877237Z ssh-user: git
|
|
356
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.4877651Z persist-credentials: true
|
|
357
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.4878078Z clean: true
|
|
358
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.4878467Z sparse-checkout-cone-mode: true
|
|
359
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.4878928Z fetch-depth: 1
|
|
360
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.4879300Z fetch-tags: false
|
|
361
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.4879682Z show-progress: true
|
|
362
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.4880083Z lfs: false
|
|
363
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.4880435Z submodules: false
|
|
364
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.4880836Z set-safe-directory: true
|
|
365
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.4881472Z ##[endgroup]
|
|
366
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.5929893Z Syncing repository: link-assistant/agent
|
|
367
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.5931583Z ##[group]Getting Git version info
|
|
368
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.5932695Z Working directory is '/home/runner/work/agent/agent'
|
|
369
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.5933610Z [command]/usr/bin/git version
|
|
370
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6033666Z git version 2.52.0
|
|
371
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6059008Z ##[endgroup]
|
|
372
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6073077Z Temporarily overriding HOME='/home/runner/work/_temp/23ccd52b-e899-47d5-9d5e-97cdb38f3130' before making global git config changes
|
|
373
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6074399Z Adding repository directory to the temporary git global config as a safe directory
|
|
374
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6078124Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/agent/agent
|
|
375
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6120441Z Deleting the contents of '/home/runner/work/agent/agent'
|
|
376
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6124535Z ##[group]Initializing the repository
|
|
377
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6128998Z [command]/usr/bin/git init /home/runner/work/agent/agent
|
|
378
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6256755Z hint: Using 'master' as the name for the initial branch. This default branch name
|
|
379
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6258484Z hint: will change to "main" in Git 3.0. To configure the initial branch name
|
|
380
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6260119Z hint: to use in all of your new repositories, which will suppress this warning,
|
|
381
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6261486Z hint: call:
|
|
382
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6262755Z hint:
|
|
383
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6263553Z hint: git config --global init.defaultBranch <name>
|
|
384
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6264586Z hint:
|
|
385
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6265598Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
|
|
386
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6267232Z hint: 'development'. The just-created branch can be renamed via this command:
|
|
387
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6268491Z hint:
|
|
388
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6269208Z hint: git branch -m <name>
|
|
389
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6270018Z hint:
|
|
390
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6271102Z hint: Disable this message with "git config set advice.defaultBranchName false"
|
|
391
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6273007Z Initialized empty Git repository in /home/runner/work/agent/agent/.git/
|
|
392
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6276489Z [command]/usr/bin/git remote add origin https://github.com/link-assistant/agent
|
|
393
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6311256Z ##[endgroup]
|
|
394
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6312541Z ##[group]Disabling automatic garbage collection
|
|
395
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6314859Z [command]/usr/bin/git config --local gc.auto 0
|
|
396
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6347256Z ##[endgroup]
|
|
397
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6348631Z ##[group]Setting up auth
|
|
398
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6354268Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
|
|
399
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6387049Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
|
|
400
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6819247Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
|
|
401
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.6853330Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
|
|
402
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.7089457Z [command]/usr/bin/git config --local --name-only --get-regexp ^includeIf\.gitdir:
|
|
403
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.7121892Z [command]/usr/bin/git submodule foreach --recursive git config --local --show-origin --name-only --get-regexp remote.origin.url
|
|
404
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.7357296Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
|
|
405
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.7390862Z ##[endgroup]
|
|
406
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.7391611Z ##[group]Fetching the repository
|
|
407
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:24.7399497Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +refs/heads/main:refs/remotes/origin/main
|
|
408
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:25.0397732Z From https://github.com/link-assistant/agent
|
|
409
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:25.0399344Z * [new branch] main -> origin/main
|
|
410
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:25.0436078Z ##[endgroup]
|
|
411
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:25.0437363Z ##[group]Determining the checkout info
|
|
412
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:25.0438915Z ##[endgroup]
|
|
413
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:25.0444289Z [command]/usr/bin/git sparse-checkout disable
|
|
414
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:25.0489043Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig
|
|
415
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:25.0520175Z ##[group]Checking out the ref
|
|
416
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:25.0521601Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main
|
|
417
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:25.0879889Z Switched to a new branch 'main'
|
|
418
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:25.0881675Z branch 'main' set up to track 'origin/main'.
|
|
419
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:25.0890533Z ##[endgroup]
|
|
420
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:25.0925736Z [command]/usr/bin/git log -1 --format=%H
|
|
421
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:25.0947970Z 1730fae4a399750f320591a6dfd62cf40363f2ac
|
|
422
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:25.1187021Z ##[group]Run oven-sh/setup-bun@v2
|
|
423
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:25.1187757Z with:
|
|
424
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:25.1188167Z bun-version: latest
|
|
425
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:25.1188684Z no-cache: false
|
|
426
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:25.1189136Z ##[endgroup]
|
|
427
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:25.3298392Z Downloading a new version of Bun: https://bun.sh/download/latest/linux/x64?avx2=true&profile=false
|
|
428
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:25.7960285Z [command]/usr/bin/unzip -o -q /home/runner/work/_temp/a73f794c-4543-4d43-b82c-e430e9ba633e.zip
|
|
429
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:26.5792552Z [command]/home/runner/.bun/bin/bun --revision
|
|
430
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:26.5833204Z 1.3.5+1e86cebd7
|
|
431
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:26.5974689Z ##[group]Run bun install
|
|
432
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:26.5975311Z [36;1mbun install[0m
|
|
433
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:26.6013732Z shell: /usr/bin/bash -e {0}
|
|
434
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:26.6014041Z ##[endgroup]
|
|
435
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:26.6108806Z bun install v1.3.5 (1e86cebd)
|
|
436
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:27.8377954Z
|
|
437
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:27.8384111Z $ cd .. && husky || true
|
|
438
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7296496Z
|
|
439
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7297070Z + @changesets/cli@2.29.8
|
|
440
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7297550Z + @eslint/js@9.39.2
|
|
441
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7297860Z + eslint@9.39.2
|
|
442
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7298204Z + eslint-config-prettier@10.1.8
|
|
443
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7298742Z + eslint-plugin-prettier@5.5.4
|
|
444
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7299124Z + husky@9.1.7
|
|
445
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7299457Z + lint-staged@16.2.7
|
|
446
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7299798Z + prettier@3.7.4
|
|
447
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7300115Z + @actions/core@1.11.1
|
|
448
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7300458Z + @actions/github@6.0.1
|
|
449
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7300826Z + @agentclientprotocol/sdk@0.5.1
|
|
450
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7301216Z + @ai-sdk/mcp@0.0.8
|
|
451
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7301593Z + @ai-sdk/xai@2.0.33
|
|
452
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7302535Z + @clack/prompts@0.11.0
|
|
453
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7302994Z + @hono/standard-validator@0.2.0
|
|
454
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7303390Z + @hono/zod-validator@0.7.5
|
|
455
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7303816Z + @modelcontextprotocol/sdk@1.22.0
|
|
456
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7304215Z + @octokit/graphql@9.0.3
|
|
457
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7304558Z + @octokit/rest@22.0.1
|
|
458
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7305162Z + @openauthjs/openauth@0.4.3
|
|
459
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7305532Z + @opencode-ai/sdk@1.0.78
|
|
460
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7311131Z + @opentui/core@0.1.46
|
|
461
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7315173Z + @opentui/solid@0.1.46
|
|
462
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7315583Z + @parcel/watcher@2.5.1
|
|
463
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7316312Z + @solid-primitives/event-bus@1.1.2
|
|
464
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7318374Z + @standard-community/standard-json@0.3.5
|
|
465
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7319163Z + @standard-community/standard-openapi@0.2.9
|
|
466
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7322213Z + @zip.js/zip.js@2.8.10
|
|
467
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7322625Z + ai@6.0.0-beta.99
|
|
468
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7322958Z + chokidar@4.0.3
|
|
469
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7323297Z + clipboardy@5.0.0
|
|
470
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7323643Z + command-stream@0.7.1
|
|
471
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7323992Z + decimal.js@10.6.0
|
|
472
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7324472Z + diff@8.0.2
|
|
473
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7324771Z + fuzzysort@3.1.0
|
|
474
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7325084Z + glob@10.5.0
|
|
475
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7325382Z + gray-matter@4.0.3
|
|
476
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7325692Z + hono@4.10.6
|
|
477
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7325974Z + hono-openapi@1.1.1
|
|
478
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7326306Z + ignore@7.0.5
|
|
479
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7326609Z + jsonc-parser@3.3.1
|
|
480
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7326969Z + lino-objects-codec@0.1.1
|
|
481
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7327333Z + log-lazy@1.0.4
|
|
482
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7327636Z + minimatch@10.1.1
|
|
483
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7327947Z + remeda@2.32.0
|
|
484
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7328242Z + solid-js@1.9.10
|
|
485
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7328562Z + strip-ansi@7.1.2
|
|
486
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7328874Z + test-anywhere@0.7.0
|
|
487
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7329228Z + tree-sitter-bash@0.25.0
|
|
488
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7329577Z + turndown@7.2.2
|
|
489
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7329882Z + ulid@3.0.1
|
|
490
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7331244Z + vscode-jsonrpc@8.2.1
|
|
491
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7331603Z + vscode-languageserver-types@3.17.5
|
|
492
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7331880Z + web-tree-sitter@0.25.10
|
|
493
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7332446Z + xdg-basedir@5.1.0
|
|
494
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7332629Z + yargs@18.0.0
|
|
495
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7332796Z + zod@4.1.12
|
|
496
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7332894Z
|
|
497
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7333018Z 607 packages installed [3.12s]
|
|
498
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7516788Z ##[group]Run bun test tests/json-standard-unit.test.js
|
|
499
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7517233Z [36;1mbun test tests/json-standard-unit.test.js[0m
|
|
500
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7551348Z shell: /usr/bin/bash -e {0}
|
|
501
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7551591Z ##[endgroup]
|
|
502
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7618277Z bun test v1.3.5 (1e86cebd)
|
|
503
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7669237Z
|
|
504
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7670096Z ##[group]tests/json-standard-unit.test.js:
|
|
505
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7734528Z (pass) JSON Standard Module - Unit Tests > isValidJsonStandard > accepts "opencode"
|
|
506
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7736744Z (pass) JSON Standard Module - Unit Tests > isValidJsonStandard > accepts "claude"
|
|
507
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7737683Z (pass) JSON Standard Module - Unit Tests > isValidJsonStandard > rejects invalid values
|
|
508
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7739096Z (pass) JSON Standard Module - Unit Tests > serializeOutput > opencode format produces pretty-printed JSON
|
|
509
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7740494Z (pass) JSON Standard Module - Unit Tests > serializeOutput > claude format produces compact JSON (NDJSON)
|
|
510
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7741568Z (pass) JSON Standard Module - Unit Tests > serializeOutput > both formats produce valid JSON
|
|
511
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7742889Z (pass) JSON Standard Module - Unit Tests > convertOpenCodeToClaude > converts step_start to init
|
|
512
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7743935Z (pass) JSON Standard Module - Unit Tests > convertOpenCodeToClaude > converts text to message
|
|
513
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7744974Z (pass) JSON Standard Module - Unit Tests > convertOpenCodeToClaude > converts tool_use to tool_use
|
|
514
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7746132Z (pass) JSON Standard Module - Unit Tests > convertOpenCodeToClaude > converts step_finish to result [1.00ms]
|
|
515
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7747963Z (pass) JSON Standard Module - Unit Tests > convertOpenCodeToClaude > converts error to result with error status
|
|
516
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7749204Z (pass) JSON Standard Module - Unit Tests > convertOpenCodeToClaude > returns null for text without content
|
|
517
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7750526Z (pass) JSON Standard Module - Unit Tests > convertOpenCodeToClaude > uses snake_case session_id instead of camelCase sessionID
|
|
518
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7751808Z (pass) JSON Standard Module - Unit Tests > createEventHandler > creates handler with correct startTime
|
|
519
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7753108Z (pass) JSON Standard Module - Unit Tests > createEventHandler > handler.output exists and is a function
|
|
520
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7754289Z (pass) JSON Standard Comparison Tests > opencode and claude formats produce different output for same event
|
|
521
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7755364Z (pass) JSON Standard Comparison Tests > opencode preserves original event structure
|
|
522
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7755916Z
|
|
523
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7756362Z ##[endgroup]
|
|
524
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7756531Z
|
|
525
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7756647Z 17 pass
|
|
526
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7756902Z 0 fail
|
|
527
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7757163Z 50 expect() calls
|
|
528
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7757481Z Ran 17 tests across 1 file. [13.00ms]
|
|
529
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.7916270Z Post job cleanup.
|
|
530
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:29.9960743Z Post job cleanup.
|
|
531
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:30.0959801Z [command]/usr/bin/git version
|
|
532
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:30.1003459Z git version 2.52.0
|
|
533
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:30.1062102Z Temporarily overriding HOME='/home/runner/work/_temp/d0297e9f-ba0c-4364-b1af-8c49eb501cda' before making global git config changes
|
|
534
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:30.1063454Z Adding repository directory to the temporary git global config as a safe directory
|
|
535
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:30.1068133Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/agent/agent
|
|
536
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:30.1104726Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
|
|
537
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:30.1137886Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
|
|
538
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:30.1402604Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
|
|
539
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:30.1443260Z http.https://github.com/.extraheader
|
|
540
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:30.1445990Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
|
|
541
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:30.1484831Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
|
|
542
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:30.1774390Z [command]/usr/bin/git config --local --name-only --get-regexp ^includeIf\.gitdir:
|
|
543
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:30.1815741Z [command]/usr/bin/git submodule foreach --recursive git config --local --show-origin --name-only --get-regexp remote.origin.url
|
|
544
|
+
+Unit Tests (Bun on ubuntu-latest) UNKNOWN STEP 2026-01-08T02:22:30.2225235Z Cleaning up orphan processes
|
|
545
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.1830408Z Current runner version: '2.330.0'
|
|
546
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.1856986Z ##[group]Runner Image Provisioner
|
|
547
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.1857680Z Hosted Compute Agent
|
|
548
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.1858174Z Version: 20251211.462
|
|
549
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.1858653Z Commit: 6cbad8c2bb55d58165063d031ccabf57e2d2db61
|
|
550
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.1859271Z Build Date: 2025-12-11T16:28:49Z
|
|
551
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.1859817Z Worker ID: {cf56a3dc-6204-4419-a057-5ea3dae57985}
|
|
552
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.1860413Z ##[endgroup]
|
|
553
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.1860854Z ##[group]Operating System
|
|
554
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.1861342Z Microsoft Windows Server 2025
|
|
555
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.1861809Z 10.0.26100
|
|
556
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.1862169Z Datacenter
|
|
557
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.1862571Z ##[endgroup]
|
|
558
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.1862947Z ##[group]Runner Image
|
|
559
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.1863384Z Image: windows-2025
|
|
560
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.1863764Z Version: 20260105.172.1
|
|
561
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.1865049Z Included Software: https://github.com/actions/runner-images/blob/win25/20260105.172/images/windows/Windows2025-Readme.md
|
|
562
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.1866304Z Image Release: https://github.com/actions/runner-images/releases/tag/win25%2F20260105.172
|
|
563
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.1867063Z ##[endgroup]
|
|
564
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.1867925Z ##[group]GITHUB_TOKEN Permissions
|
|
565
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.1869606Z Contents: write
|
|
566
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.1870061Z Metadata: read
|
|
567
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.1871118Z ##[endgroup]
|
|
568
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.1873336Z Secret source: Actions
|
|
569
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.1873938Z Prepare workflow directory
|
|
570
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.2209668Z Prepare all required actions
|
|
571
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.2249612Z Getting action download info
|
|
572
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.5931634Z Download action repository 'actions/checkout@v4' (SHA:34e114876b0b11c390a56381ad16ebd13914f8d5)
|
|
573
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:25.7006001Z Download action repository 'oven-sh/setup-bun@v2' (SHA:b7a1c7ccf290d58743029c4f6903da283811b979)
|
|
574
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:26.6146188Z Complete job name: Unit Tests (Bun on windows-latest)
|
|
575
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:26.7504216Z ##[group]Run actions/checkout@v4
|
|
576
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:26.7505513Z with:
|
|
577
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:26.7506037Z ref: refs/heads/main
|
|
578
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:26.7506740Z token: ***
|
|
579
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:26.7507196Z repository: link-assistant/agent
|
|
580
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:26.7507747Z ssh-strict: true
|
|
581
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:26.7508205Z ssh-user: git
|
|
582
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:26.7508684Z persist-credentials: true
|
|
583
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:26.7509170Z clean: true
|
|
584
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:26.7509600Z sparse-checkout-cone-mode: true
|
|
585
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:26.7510130Z fetch-depth: 1
|
|
586
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:26.7510566Z fetch-tags: false
|
|
587
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:26.7510982Z show-progress: true
|
|
588
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:26.7511431Z lfs: false
|
|
589
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:26.7512233Z submodules: false
|
|
590
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:26.7512823Z set-safe-directory: true
|
|
591
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:26.7513696Z ##[endgroup]
|
|
592
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:26.9197978Z Syncing repository: link-assistant/agent
|
|
593
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:26.9199955Z ##[group]Getting Git version info
|
|
594
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:26.9200738Z Working directory is 'D:\a\agent\agent'
|
|
595
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:26.9881493Z [command]"C:\Program Files\Git\bin\git.exe" version
|
|
596
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:27.4643035Z git version 2.52.0.windows.1
|
|
597
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:27.4695532Z ##[endgroup]
|
|
598
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:27.4714640Z Temporarily overriding HOME='D:\a\_temp\996d9b1d-e062-4241-a3a0-1f563a959ef0' before making global git config changes
|
|
599
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:27.4716281Z Adding repository directory to the temporary git global config as a safe directory
|
|
600
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:27.4725532Z [command]"C:\Program Files\Git\bin\git.exe" config --global --add safe.directory D:\a\agent\agent
|
|
601
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:27.5491935Z Deleting the contents of 'D:\a\agent\agent'
|
|
602
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:27.5497556Z ##[group]Initializing the repository
|
|
603
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:27.5507000Z [command]"C:\Program Files\Git\bin\git.exe" init D:\a\agent\agent
|
|
604
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:27.6604444Z Initialized empty Git repository in D:/a/agent/agent/.git/
|
|
605
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:27.6653581Z [command]"C:\Program Files\Git\bin\git.exe" remote add origin https://github.com/link-assistant/agent
|
|
606
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:27.7333495Z ##[endgroup]
|
|
607
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:27.7338087Z ##[group]Disabling automatic garbage collection
|
|
608
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:27.7346546Z [command]"C:\Program Files\Git\bin\git.exe" config --local gc.auto 0
|
|
609
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:27.7641996Z ##[endgroup]
|
|
610
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:27.7643445Z ##[group]Setting up auth
|
|
611
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:27.7657006Z [command]"C:\Program Files\Git\bin\git.exe" config --local --name-only --get-regexp core\.sshCommand
|
|
612
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:27.7994038Z [command]"C:\Program Files\Git\bin\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\""
|
|
613
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:29.3380987Z [command]"C:\Program Files\Git\bin\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
|
|
614
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:29.3680429Z [command]"C:\Program Files\Git\bin\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\""
|
|
615
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:29.9109535Z [command]"C:\Program Files\Git\bin\git.exe" config --local --name-only --get-regexp ^includeIf\.gitdir:
|
|
616
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:29.9411248Z [command]"C:\Program Files\Git\bin\git.exe" submodule foreach --recursive "git config --local --show-origin --name-only --get-regexp remote.origin.url"
|
|
617
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:30.5983471Z [command]"C:\Program Files\Git\bin\git.exe" config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ***"
|
|
618
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:30.6488772Z ##[endgroup]
|
|
619
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:30.6492006Z ##[group]Fetching the repository
|
|
620
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:30.6510386Z [command]"C:\Program Files\Git\bin\git.exe" -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +refs/heads/main:refs/remotes/origin/main
|
|
621
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:32.6329106Z From https://github.com/link-assistant/agent
|
|
622
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:32.6333277Z * [new branch] main -> origin/main
|
|
623
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:32.6597113Z ##[endgroup]
|
|
624
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:32.6598512Z ##[group]Determining the checkout info
|
|
625
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:32.6599379Z ##[endgroup]
|
|
626
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:32.6610299Z [command]"C:\Program Files\Git\bin\git.exe" sparse-checkout disable
|
|
627
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:32.7008304Z [command]"C:\Program Files\Git\bin\git.exe" config --local --unset-all extensions.worktreeConfig
|
|
628
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:32.7355541Z ##[group]Checking out the ref
|
|
629
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:32.7371328Z [command]"C:\Program Files\Git\bin\git.exe" checkout --progress --force -B main refs/remotes/origin/main
|
|
630
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:32.8930576Z branch 'main' set up to track 'origin/main'.
|
|
631
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:32.8937497Z Switched to a new branch 'main'
|
|
632
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:32.8983920Z ##[endgroup]
|
|
633
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:32.9413449Z [command]"C:\Program Files\Git\bin\git.exe" log -1 --format=%H
|
|
634
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:32.9697593Z 1730fae4a399750f320591a6dfd62cf40363f2ac
|
|
635
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:33.0198467Z ##[group]Run oven-sh/setup-bun@v2
|
|
636
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:33.0198880Z with:
|
|
637
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:33.0199062Z bun-version: latest
|
|
638
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:33.0199270Z no-cache: false
|
|
639
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:33.0199431Z ##[endgroup]
|
|
640
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:33.2994475Z Downloading a new version of Bun: https://bun.sh/download/latest/win32/x64?avx2=true&profile=false
|
|
641
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:34.5863240Z [command]"C:\Program Files\PowerShell\7\pwsh.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command "$ErrorActionPreference = 'Stop' ; try { Add-Type -AssemblyName System.IO.Compression.ZipFile } catch { } ; try { [System.IO.Compression.ZipFile]::ExtractToDirectory('D:\a\_temp\594d0d2f-b6a7-4acc-a5c1-3dcab4165295.zip', 'D:\a\_temp\c4bdefdf-3801-49c3-9e29-74b994848836', $true) } catch { if (($_.Exception.GetType().FullName -eq 'System.Management.Automation.MethodException') -or ($_.Exception.GetType().FullName -eq 'System.Management.Automation.RuntimeException') ){ Expand-Archive -LiteralPath 'D:\a\_temp\594d0d2f-b6a7-4acc-a5c1-3dcab4165295.zip' -DestinationPath 'D:\a\_temp\c4bdefdf-3801-49c3-9e29-74b994848836' -Force } else { throw $_ } } ;"
|
|
642
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:39.3065186Z [command]C:\Users\runneradmin\.bun\bin\bun.exe --revision
|
|
643
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:39.9206301Z 1.3.5+1e86cebd7
|
|
644
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:39.9515885Z ##[group]Run bun install
|
|
645
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:39.9516293Z [36;1mbun install[0m
|
|
646
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:39.9581432Z shell: C:\Program Files\PowerShell\7\pwsh.EXE -command ". '{0}'"
|
|
647
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:39.9581746Z ##[endgroup]
|
|
648
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:22:40.3166986Z bun install v1.3.5 (1e86cebd)
|
|
649
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:19.0880243Z
|
|
650
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:19.0922010Z $ cd .. && husky || true
|
|
651
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9590740Z
|
|
652
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9591155Z + @changesets/cli@2.29.8
|
|
653
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9591525Z + @eslint/js@9.39.2
|
|
654
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9591755Z + eslint@9.39.2
|
|
655
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9592034Z + eslint-config-prettier@10.1.8
|
|
656
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9592374Z + eslint-plugin-prettier@5.5.4
|
|
657
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9593641Z + husky@9.1.7
|
|
658
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9594442Z + lint-staged@16.2.7
|
|
659
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9594735Z + prettier@3.7.4
|
|
660
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9594988Z + @actions/core@1.11.1
|
|
661
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9595298Z + @actions/github@6.0.1
|
|
662
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9595594Z + @agentclientprotocol/sdk@0.5.1
|
|
663
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9595987Z + @ai-sdk/mcp@0.0.8
|
|
664
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9596231Z + @ai-sdk/xai@2.0.33
|
|
665
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9596512Z + @clack/prompts@0.11.0
|
|
666
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9596795Z + @hono/standard-validator@0.2.0
|
|
667
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9597254Z + @hono/zod-validator@0.7.5
|
|
668
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9597581Z + @modelcontextprotocol/sdk@1.22.0
|
|
669
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9597929Z + @octokit/graphql@9.0.3
|
|
670
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9598223Z + @octokit/rest@22.0.1
|
|
671
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9598504Z + @openauthjs/openauth@0.4.3
|
|
672
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9598828Z + @opencode-ai/sdk@1.0.78
|
|
673
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9599115Z + @opentui/core@0.1.46
|
|
674
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9599429Z + @opentui/solid@0.1.46
|
|
675
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9599735Z + @parcel/watcher@2.5.1
|
|
676
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9600074Z + @solid-primitives/event-bus@1.1.2
|
|
677
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9600486Z + @standard-community/standard-json@0.3.5
|
|
678
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9600924Z + @standard-community/standard-openapi@0.2.9
|
|
679
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9601357Z + @zip.js/zip.js@2.8.10
|
|
680
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9601643Z + ai@6.0.0-beta.99
|
|
681
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9601900Z + chokidar@4.0.3
|
|
682
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9602164Z + clipboardy@5.0.0
|
|
683
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9602771Z + command-stream@0.7.1
|
|
684
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9603043Z + decimal.js@10.6.0
|
|
685
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9603318Z + diff@8.0.2
|
|
686
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9603665Z + fuzzysort@3.1.0
|
|
687
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9603919Z + glob@10.5.0
|
|
688
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9604179Z + gray-matter@4.0.3
|
|
689
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9604425Z + hono@4.10.6
|
|
690
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9604690Z + hono-openapi@1.1.1
|
|
691
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9604952Z + ignore@7.0.5
|
|
692
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9605192Z + jsonc-parser@3.3.1
|
|
693
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9605459Z + lino-objects-codec@0.1.1
|
|
694
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9605767Z + log-lazy@1.0.4
|
|
695
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9606005Z + minimatch@10.1.1
|
|
696
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9606254Z + remeda@2.32.0
|
|
697
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9606483Z + solid-js@1.9.10
|
|
698
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9606748Z + strip-ansi@7.1.2
|
|
699
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9607042Z + test-anywhere@0.7.0
|
|
700
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9607726Z + tree-sitter-bash@0.25.0
|
|
701
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9607964Z + turndown@7.2.2
|
|
702
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9608124Z + ulid@3.0.1
|
|
703
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9608301Z + vscode-jsonrpc@8.2.1
|
|
704
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9608510Z + vscode-languageserver-types@3.17.5
|
|
705
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9608767Z + web-tree-sitter@0.25.10
|
|
706
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9609046Z + xdg-basedir@5.1.0
|
|
707
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9609215Z + yargs@18.0.0
|
|
708
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9609365Z + zod@4.1.12
|
|
709
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9609473Z
|
|
710
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:23.9609566Z 606 packages installed [43.65s]
|
|
711
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.2846979Z ##[group]Run bun test tests/json-standard-unit.test.js
|
|
712
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.2847397Z [36;1mbun test tests/json-standard-unit.test.js[0m
|
|
713
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.2906056Z shell: C:\Program Files\PowerShell\7\pwsh.EXE -command ". '{0}'"
|
|
714
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.2906355Z ##[endgroup]
|
|
715
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.5518469Z bun test v1.3.5 (1e86cebd)
|
|
716
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.5816685Z
|
|
717
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.5820348Z ##[group]tests\json-standard-unit.test.js:
|
|
718
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.5992918Z (pass) JSON Standard Module - Unit Tests > isValidJsonStandard > accepts "opencode"
|
|
719
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.5993703Z (pass) JSON Standard Module - Unit Tests > isValidJsonStandard > accepts "claude"
|
|
720
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.5994181Z (pass) JSON Standard Module - Unit Tests > isValidJsonStandard > rejects invalid values
|
|
721
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.5996759Z (pass) JSON Standard Module - Unit Tests > serializeOutput > opencode format produces pretty-printed JSON
|
|
722
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.5998262Z (pass) JSON Standard Module - Unit Tests > serializeOutput > claude format produces compact JSON (NDJSON)
|
|
723
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.6000067Z (pass) JSON Standard Module - Unit Tests > serializeOutput > both formats produce valid JSON
|
|
724
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.6004374Z (pass) JSON Standard Module - Unit Tests > convertOpenCodeToClaude > converts step_start to init
|
|
725
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.6005968Z (pass) JSON Standard Module - Unit Tests > convertOpenCodeToClaude > converts text to message
|
|
726
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.6008895Z (pass) JSON Standard Module - Unit Tests > convertOpenCodeToClaude > converts tool_use to tool_use
|
|
727
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.6010936Z (pass) JSON Standard Module - Unit Tests > convertOpenCodeToClaude > converts step_finish to result
|
|
728
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.6012779Z (pass) JSON Standard Module - Unit Tests > convertOpenCodeToClaude > converts error to result with error status
|
|
729
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.6013644Z (pass) JSON Standard Module - Unit Tests > convertOpenCodeToClaude > returns null for text without content
|
|
730
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.6014434Z (pass) JSON Standard Module - Unit Tests > convertOpenCodeToClaude > uses snake_case session_id instead of camelCase sessionID
|
|
731
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.6015293Z (pass) JSON Standard Module - Unit Tests > createEventHandler > creates handler with correct startTime
|
|
732
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.6016075Z (pass) JSON Standard Module - Unit Tests > createEventHandler > handler.output exists and is a function
|
|
733
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.6016879Z (pass) JSON Standard Comparison Tests > opencode and claude formats produce different output for same event
|
|
734
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.6017651Z (pass) JSON Standard Comparison Tests > opencode preserves original event structure
|
|
735
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.6018061Z
|
|
736
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.6019343Z ##[endgroup]
|
|
737
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.6019494Z
|
|
738
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.6019555Z 17 pass
|
|
739
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.6019690Z 0 fail
|
|
740
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.6019824Z 50 expect() calls
|
|
741
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.6020084Z Ran 17 tests across 1 file. [51.00ms]
|
|
742
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:24.7491098Z Post job cleanup.
|
|
743
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:25.0354928Z Post job cleanup.
|
|
744
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:25.2464993Z [command]"C:\Program Files\Git\bin\git.exe" version
|
|
745
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:25.2744952Z git version 2.52.0.windows.1
|
|
746
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:25.2825266Z Temporarily overriding HOME='D:\a\_temp\bd3bada1-002b-482b-9b5f-4ddf3cd63a58' before making global git config changes
|
|
747
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:25.2826539Z Adding repository directory to the temporary git global config as a safe directory
|
|
748
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:25.2836432Z [command]"C:\Program Files\Git\bin\git.exe" config --global --add safe.directory D:\a\agent\agent
|
|
749
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:25.3156397Z [command]"C:\Program Files\Git\bin\git.exe" config --local --name-only --get-regexp core\.sshCommand
|
|
750
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:25.3483559Z [command]"C:\Program Files\Git\bin\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :\""
|
|
751
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:25.9320875Z [command]"C:\Program Files\Git\bin\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
|
|
752
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:25.9599677Z http.https://github.com/.extraheader
|
|
753
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:25.9661753Z [command]"C:\Program Files\Git\bin\git.exe" config --local --unset-all http.https://github.com/.extraheader
|
|
754
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:25.9978886Z [command]"C:\Program Files\Git\bin\git.exe" submodule foreach --recursive "sh -c \"git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :\""
|
|
755
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:26.5167099Z [command]"C:\Program Files\Git\bin\git.exe" config --local --name-only --get-regexp ^includeIf\.gitdir:
|
|
756
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:26.5466300Z [command]"C:\Program Files\Git\bin\git.exe" submodule foreach --recursive "git config --local --show-origin --name-only --get-regexp remote.origin.url"
|
|
757
|
+
+Unit Tests (Bun on windows-latest) UNKNOWN STEP 2026-01-08T02:23:27.0824052Z Cleaning up orphan processes
|
|
758
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6268570Z Current runner version: '2.330.0'
|
|
759
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6284600Z ##[group]Runner Image Provisioner
|
|
760
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6285070Z Hosted Compute Agent
|
|
761
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6285410Z Version: 20251211.462
|
|
762
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6285780Z Commit: 6cbad8c2bb55d58165063d031ccabf57e2d2db61
|
|
763
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6286210Z Build Date: 2025-12-11T16:28:49Z
|
|
764
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6287150Z Worker ID: {260fd26d-9bf0-47f3-bb8a-84c2e85822e4}
|
|
765
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6287910Z ##[endgroup]
|
|
766
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6288230Z ##[group]Operating System
|
|
767
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6288570Z macOS
|
|
768
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6288860Z 15.7.3
|
|
769
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6289140Z 24G419
|
|
770
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6289410Z ##[endgroup]
|
|
771
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6289700Z ##[group]Runner Image
|
|
772
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6290020Z Image: macos-15-arm64
|
|
773
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6290420Z Version: 20260105.0094.1
|
|
774
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6291100Z Included Software: https://github.com/actions/runner-images/blob/macos-15-arm64/20260105.0094/images/macos/macos-15-arm64-Readme.md
|
|
775
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6292090Z Image Release: https://github.com/actions/runner-images/releases/tag/macos-15-arm64%2F20260105.0094
|
|
776
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6292690Z ##[endgroup]
|
|
777
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6293300Z ##[group]GITHUB_TOKEN Permissions
|
|
778
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6294240Z Contents: write
|
|
779
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6294540Z Metadata: read
|
|
780
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6294830Z ##[endgroup]
|
|
781
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6296100Z Secret source: Actions
|
|
782
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6296460Z Prepare workflow directory
|
|
783
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6570860Z Prepare all required actions
|
|
784
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:24.6614020Z Getting action download info
|
|
785
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:25.1033790Z Download action repository 'actions/checkout@v4' (SHA:34e114876b0b11c390a56381ad16ebd13914f8d5)
|
|
786
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:25.4217710Z Download action repository 'oven-sh/setup-bun@v2' (SHA:b7a1c7ccf290d58743029c4f6903da283811b979)
|
|
787
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.2381690Z Complete job name: Unit Tests (Bun on macos-latest)
|
|
788
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.2872320Z ##[group]Run actions/checkout@v4
|
|
789
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.2872840Z with:
|
|
790
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.2873110Z ref: refs/heads/main
|
|
791
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.2873600Z token: ***
|
|
792
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.2873890Z repository: link-assistant/agent
|
|
793
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.2874240Z ssh-strict: true
|
|
794
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.2874520Z ssh-user: git
|
|
795
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.2874810Z persist-credentials: true
|
|
796
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.2875120Z clean: true
|
|
797
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.2875400Z sparse-checkout-cone-mode: true
|
|
798
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.2875740Z fetch-depth: 1
|
|
799
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.2876010Z fetch-tags: false
|
|
800
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.2876290Z show-progress: true
|
|
801
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.2876570Z lfs: false
|
|
802
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.2876830Z submodules: false
|
|
803
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.2877130Z set-safe-directory: true
|
|
804
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.2877540Z ##[endgroup]
|
|
805
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7332550Z Syncing repository: link-assistant/agent
|
|
806
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7334280Z ##[group]Getting Git version info
|
|
807
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7335290Z Working directory is '/Users/runner/work/agent/agent'
|
|
808
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7336640Z [command]/opt/homebrew/bin/git version
|
|
809
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7463810Z git version 2.52.0
|
|
810
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7573510Z ##[endgroup]
|
|
811
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7578480Z Copying '/Users/runner/.gitconfig' to '/Users/runner/work/_temp/d3e2dd92-a60e-424d-9d0a-340ed3216c93/.gitconfig'
|
|
812
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7579980Z Temporarily overriding HOME='/Users/runner/work/_temp/d3e2dd92-a60e-424d-9d0a-340ed3216c93' before making global git config changes
|
|
813
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7581130Z Adding repository directory to the temporary git global config as a safe directory
|
|
814
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7582270Z [command]/opt/homebrew/bin/git config --global --add safe.directory /Users/runner/work/agent/agent
|
|
815
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7667650Z Deleting the contents of '/Users/runner/work/agent/agent'
|
|
816
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7669070Z ##[group]Initializing the repository
|
|
817
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7671530Z [command]/opt/homebrew/bin/git init /Users/runner/work/agent/agent
|
|
818
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7816950Z hint: Using 'master' as the name for the initial branch. This default branch name
|
|
819
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7829440Z hint: will change to "main" in Git 3.0. To configure the initial branch name
|
|
820
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7862810Z hint: to use in all of your new repositories, which will suppress this warning,
|
|
821
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7863580Z hint: call:
|
|
822
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7863990Z hint:
|
|
823
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7864470Z hint: git config --global init.defaultBranch <name>
|
|
824
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7865020Z hint:
|
|
825
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7865550Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
|
|
826
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7866320Z hint: 'development'. The just-created branch can be renamed via this command:
|
|
827
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7866950Z hint:
|
|
828
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7867330Z hint: git branch -m <name>
|
|
829
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7867760Z hint:
|
|
830
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7868300Z hint: Disable this message with "git config set advice.defaultBranchName false"
|
|
831
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7869310Z Initialized empty Git repository in /Users/runner/work/agent/agent/.git/
|
|
832
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7870920Z [command]/opt/homebrew/bin/git remote add origin https://github.com/link-assistant/agent
|
|
833
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7897360Z ##[endgroup]
|
|
834
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7898080Z ##[group]Disabling automatic garbage collection
|
|
835
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7899830Z [command]/opt/homebrew/bin/git config --local gc.auto 0
|
|
836
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7957330Z ##[endgroup]
|
|
837
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7957990Z ##[group]Setting up auth
|
|
838
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.7961770Z [command]/opt/homebrew/bin/git config --local --name-only --get-regexp core\.sshCommand
|
|
839
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.8021490Z [command]/opt/homebrew/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
|
|
840
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.9381510Z [command]/opt/homebrew/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
|
|
841
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:26.9429370Z [command]/opt/homebrew/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
|
|
842
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:27.0213490Z [command]/opt/homebrew/bin/git config --local --name-only --get-regexp ^includeIf\.gitdir:
|
|
843
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:27.0278630Z [command]/opt/homebrew/bin/git submodule foreach --recursive git config --local --show-origin --name-only --get-regexp remote.origin.url
|
|
844
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:27.1636800Z [command]/opt/homebrew/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
|
|
845
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:27.1639650Z ##[endgroup]
|
|
846
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:27.1640370Z ##[group]Fetching the repository
|
|
847
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:27.1641730Z [command]/opt/homebrew/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +refs/heads/main:refs/remotes/origin/main
|
|
848
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:27.8630670Z From https://github.com/link-assistant/agent
|
|
849
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:27.8631910Z * [new branch] main -> origin/main
|
|
850
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:27.8708680Z ##[endgroup]
|
|
851
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:27.8709590Z ##[group]Determining the checkout info
|
|
852
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:27.8710440Z ##[endgroup]
|
|
853
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:27.8711300Z [command]/opt/homebrew/bin/git sparse-checkout disable
|
|
854
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:27.8782210Z [command]/opt/homebrew/bin/git config --local --unset-all extensions.worktreeConfig
|
|
855
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:27.8843760Z ##[group]Checking out the ref
|
|
856
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:27.8845050Z [command]/opt/homebrew/bin/git checkout --progress --force -B main refs/remotes/origin/main
|
|
857
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:27.9718330Z Switched to a new branch 'main'
|
|
858
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:27.9931650Z branch 'main' set up to track 'origin/main'.
|
|
859
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:28.0238020Z ##[endgroup]
|
|
860
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:28.0539770Z [command]/opt/homebrew/bin/git log -1 --format=%H
|
|
861
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:28.0640350Z 1730fae4a399750f320591a6dfd62cf40363f2ac
|
|
862
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:28.1295760Z ##[group]Run oven-sh/setup-bun@v2
|
|
863
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:28.1296570Z with:
|
|
864
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:28.1297140Z bun-version: latest
|
|
865
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:28.1297800Z no-cache: false
|
|
866
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:28.1298390Z ##[endgroup]
|
|
867
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:28.2962220Z Downloading a new version of Bun: https://bun.sh/download/latest/darwin/arm64?avx2=true&profile=false
|
|
868
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:29.0262010Z [command]/usr/bin/unzip -o -q /Users/runner/work/_temp/e1930739-ed27-46c9-993c-c2831837b1a2.zip
|
|
869
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:29.5048120Z [command]/Users/runner/.bun/bin/bun --revision
|
|
870
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:29.5150210Z 1.3.5+1e86cebd7
|
|
871
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:29.5268900Z ##[group]Run bun install
|
|
872
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:29.5269250Z [36;1mbun install[0m
|
|
873
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:29.5324710Z shell: /bin/bash -e {0}
|
|
874
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:29.5324960Z ##[endgroup]
|
|
875
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:29.5874080Z bun install v1.3.5 (1e86cebd)
|
|
876
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.2245810Z
|
|
877
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.2350070Z $ cd .. && husky || true
|
|
878
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6128070Z
|
|
879
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6128460Z + @changesets/cli@2.29.8
|
|
880
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6128920Z + @eslint/js@9.39.2
|
|
881
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6129310Z + eslint@9.39.2
|
|
882
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6129520Z + eslint-config-prettier@10.1.8
|
|
883
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6129730Z + eslint-plugin-prettier@5.5.4
|
|
884
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6129910Z + husky@9.1.7
|
|
885
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6130060Z + lint-staged@16.2.7
|
|
886
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6130280Z + prettier@3.7.4
|
|
887
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6130420Z + @actions/core@1.11.1
|
|
888
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6130580Z + @actions/github@6.0.1
|
|
889
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6130770Z + @agentclientprotocol/sdk@0.5.1
|
|
890
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6130950Z + @ai-sdk/mcp@0.0.8
|
|
891
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6131130Z + @ai-sdk/xai@2.0.33
|
|
892
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6131300Z + @clack/prompts@0.11.0
|
|
893
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6131480Z + @hono/standard-validator@0.2.0
|
|
894
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6131670Z + @hono/zod-validator@0.7.5
|
|
895
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6131860Z + @modelcontextprotocol/sdk@1.22.0
|
|
896
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6132060Z + @octokit/graphql@9.0.3
|
|
897
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6132250Z + @octokit/rest@22.0.1
|
|
898
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6132460Z + @openauthjs/openauth@0.4.3
|
|
899
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6132650Z + @opencode-ai/sdk@1.0.78
|
|
900
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6132830Z + @opentui/core@0.1.46
|
|
901
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6132980Z + @opentui/solid@0.1.46
|
|
902
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6133140Z + @parcel/watcher@2.5.1
|
|
903
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6133320Z + @solid-primitives/event-bus@1.1.2
|
|
904
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6133550Z + @standard-community/standard-json@0.3.5
|
|
905
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6133810Z + @standard-community/standard-openapi@0.2.9
|
|
906
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6134070Z + @zip.js/zip.js@2.8.10
|
|
907
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6134270Z + ai@6.0.0-beta.99
|
|
908
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6134400Z + chokidar@4.0.3
|
|
909
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6134590Z + clipboardy@5.0.0
|
|
910
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6134770Z + command-stream@0.7.1
|
|
911
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6134930Z + decimal.js@10.6.0
|
|
912
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6135060Z + diff@8.0.2
|
|
913
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6135280Z + fuzzysort@3.1.0
|
|
914
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6135470Z + glob@10.5.0
|
|
915
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6135660Z + gray-matter@4.0.3
|
|
916
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6135870Z + hono@4.10.6
|
|
917
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6136150Z + hono-openapi@1.1.1
|
|
918
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6136330Z + ignore@7.0.5
|
|
919
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6136560Z + jsonc-parser@3.3.1
|
|
920
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6136730Z + lino-objects-codec@0.1.1
|
|
921
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6136920Z + log-lazy@1.0.4
|
|
922
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6137050Z + minimatch@10.1.1
|
|
923
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6137200Z + remeda@2.32.0
|
|
924
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6137400Z + solid-js@1.9.10
|
|
925
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6137650Z + strip-ansi@7.1.2
|
|
926
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6137870Z + test-anywhere@0.7.0
|
|
927
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6138100Z + tree-sitter-bash@0.25.0
|
|
928
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6138360Z + turndown@7.2.2
|
|
929
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6138570Z + ulid@3.0.1
|
|
930
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6138770Z + vscode-jsonrpc@8.2.1
|
|
931
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6139020Z + vscode-languageserver-types@3.17.5
|
|
932
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6139340Z + web-tree-sitter@0.25.10
|
|
933
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6139590Z + xdg-basedir@5.1.0
|
|
934
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6139790Z + yargs@18.0.0
|
|
935
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6140030Z + zod@4.1.12
|
|
936
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6140180Z
|
|
937
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6140330Z 606 packages installed [3.03s]
|
|
938
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6552230Z ##[group]Run bun test tests/json-standard-unit.test.js
|
|
939
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6552610Z [36;1mbun test tests/json-standard-unit.test.js[0m
|
|
940
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6608470Z shell: /bin/bash -e {0}
|
|
941
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.6608670Z ##[endgroup]
|
|
942
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.7000510Z bun test v1.3.5 (1e86cebd)
|
|
943
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.7656390Z
|
|
944
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.7667780Z ##[group]tests/json-standard-unit.test.js:
|
|
945
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.8093720Z (pass) JSON Standard Module - Unit Tests > isValidJsonStandard > accepts "opencode" [1.71ms]
|
|
946
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.8094440Z (pass) JSON Standard Module - Unit Tests > isValidJsonStandard > accepts "claude" [0.09ms]
|
|
947
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.8095090Z (pass) JSON Standard Module - Unit Tests > isValidJsonStandard > rejects invalid values
|
|
948
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.8101490Z (pass) JSON Standard Module - Unit Tests > serializeOutput > opencode format produces pretty-printed JSON [0.78ms]
|
|
949
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.8103890Z (pass) JSON Standard Module - Unit Tests > serializeOutput > claude format produces compact JSON (NDJSON) [0.29ms]
|
|
950
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.8124140Z (pass) JSON Standard Module - Unit Tests > serializeOutput > both formats produce valid JSON [1.94ms]
|
|
951
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.8129050Z (pass) JSON Standard Module - Unit Tests > convertOpenCodeToClaude > converts step_start to init [0.52ms]
|
|
952
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.8134120Z (pass) JSON Standard Module - Unit Tests > convertOpenCodeToClaude > converts text to message [0.54ms]
|
|
953
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.8134880Z (pass) JSON Standard Module - Unit Tests > convertOpenCodeToClaude > converts tool_use to tool_use [0.06ms]
|
|
954
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.8135450Z (pass) JSON Standard Module - Unit Tests > convertOpenCodeToClaude > converts step_finish to result [0.03ms]
|
|
955
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.8136050Z (pass) JSON Standard Module - Unit Tests > convertOpenCodeToClaude > converts error to result with error status [0.03ms]
|
|
956
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.8136670Z (pass) JSON Standard Module - Unit Tests > convertOpenCodeToClaude > returns null for text without content [0.02ms]
|
|
957
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.8138160Z (pass) JSON Standard Module - Unit Tests > convertOpenCodeToClaude > uses snake_case session_id instead of camelCase sessionID [0.28ms]
|
|
958
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.8138840Z (pass) JSON Standard Module - Unit Tests > createEventHandler > creates handler with correct startTime [0.01ms]
|
|
959
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.8139470Z (pass) JSON Standard Module - Unit Tests > createEventHandler > handler.output exists and is a function [0.06ms]
|
|
960
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.8140070Z (pass) JSON Standard Comparison Tests > opencode and claude formats produce different output for same event [0.03ms]
|
|
961
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.8141020Z (pass) JSON Standard Comparison Tests > opencode preserves original event structure [0.03ms]
|
|
962
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.8141370Z
|
|
963
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.8141730Z ##[endgroup]
|
|
964
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.8141860Z
|
|
965
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.8141950Z 17 pass
|
|
966
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.8142070Z 0 fail
|
|
967
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.8142190Z 50 expect() calls
|
|
968
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.8142350Z Ran 17 tests across 1 file. [116.00ms]
|
|
969
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.8212210Z Post job cleanup.
|
|
970
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:32.9629990Z Post job cleanup.
|
|
971
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:33.0472840Z [command]/opt/homebrew/bin/git version
|
|
972
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:33.0526950Z git version 2.52.0
|
|
973
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:33.0547730Z Copying '/Users/runner/.gitconfig' to '/Users/runner/work/_temp/a19791a5-4a4b-4998-80a6-63a2d683af22/.gitconfig'
|
|
974
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:33.0557080Z Temporarily overriding HOME='/Users/runner/work/_temp/a19791a5-4a4b-4998-80a6-63a2d683af22' before making global git config changes
|
|
975
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:33.0557780Z Adding repository directory to the temporary git global config as a safe directory
|
|
976
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:33.0560750Z [command]/opt/homebrew/bin/git config --global --add safe.directory /Users/runner/work/agent/agent
|
|
977
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:33.0617930Z [command]/opt/homebrew/bin/git config --local --name-only --get-regexp core\.sshCommand
|
|
978
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:33.0674000Z [command]/opt/homebrew/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
|
|
979
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:33.1303030Z [command]/opt/homebrew/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
|
|
980
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:33.1349070Z http.https://github.com/.extraheader
|
|
981
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:33.1356950Z [command]/opt/homebrew/bin/git config --local --unset-all http.https://github.com/.extraheader
|
|
982
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:33.1406990Z [command]/opt/homebrew/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
|
|
983
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:33.2030740Z [command]/opt/homebrew/bin/git config --local --name-only --get-regexp ^includeIf\.gitdir:
|
|
984
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:33.2171780Z [command]/opt/homebrew/bin/git submodule foreach --recursive git config --local --show-origin --name-only --get-regexp remote.origin.url
|
|
985
|
+
+Unit Tests (Bun on macos-latest) UNKNOWN STEP 2026-01-08T02:22:33.2870600Z Cleaning up orphan processes
|
|
986
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.3782371Z Current runner version: '2.330.0'
|
|
987
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.3806786Z ##[group]Runner Image Provisioner
|
|
988
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.3807679Z Hosted Compute Agent
|
|
989
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.3808207Z Version: 20251211.462
|
|
990
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.3808794Z Commit: 6cbad8c2bb55d58165063d031ccabf57e2d2db61
|
|
991
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.3809509Z Build Date: 2025-12-11T16:28:49Z
|
|
992
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.3810132Z Worker ID: {55993dd6-644f-4699-8b42-b8f6ecc04aa1}
|
|
993
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.3810836Z ##[endgroup]
|
|
994
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.3811315Z ##[group]Operating System
|
|
995
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.3811959Z Ubuntu
|
|
996
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.3812412Z 24.04.3
|
|
997
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.3812832Z LTS
|
|
998
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.3813679Z ##[endgroup]
|
|
999
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.3814170Z ##[group]Runner Image
|
|
1000
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.3814689Z Image: ubuntu-24.04
|
|
1001
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.3815227Z Version: 20251215.174.1
|
|
1002
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.3816222Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20251215.174/images/ubuntu/Ubuntu2404-Readme.md
|
|
1003
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.3817968Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20251215.174
|
|
1004
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.3818934Z ##[endgroup]
|
|
1005
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.3820057Z ##[group]GITHUB_TOKEN Permissions
|
|
1006
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.3822125Z Contents: write
|
|
1007
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.3822668Z Metadata: read
|
|
1008
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.3823198Z PullRequests: write
|
|
1009
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.3823716Z ##[endgroup]
|
|
1010
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.3825702Z Secret source: Actions
|
|
1011
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.3826819Z Prepare workflow directory
|
|
1012
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.4159344Z Prepare all required actions
|
|
1013
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.4198269Z Getting action download info
|
|
1014
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.8611222Z Download action repository 'actions/checkout@v4' (SHA:34e114876b0b11c390a56381ad16ebd13914f8d5)
|
|
1015
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:32.9645271Z Download action repository 'actions/setup-node@v4' (SHA:49933ea5288caeca8642d1e84afbd3f7d6820020)
|
|
1016
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.1612572Z Complete job name: Release
|
|
1017
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.2328493Z ##[group]Run actions/checkout@v4
|
|
1018
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.2329301Z with:
|
|
1019
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.2329672Z fetch-depth: 0
|
|
1020
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.2330101Z repository: link-assistant/agent
|
|
1021
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.2330725Z token: ***
|
|
1022
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.2331087Z ssh-strict: true
|
|
1023
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.2331466Z ssh-user: git
|
|
1024
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.2331845Z persist-credentials: true
|
|
1025
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.2332280Z clean: true
|
|
1026
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.2332664Z sparse-checkout-cone-mode: true
|
|
1027
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.2333116Z fetch-tags: false
|
|
1028
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.2333499Z show-progress: true
|
|
1029
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.2333879Z lfs: false
|
|
1030
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.2334234Z submodules: false
|
|
1031
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.2334616Z set-safe-directory: true
|
|
1032
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.2335252Z ##[endgroup]
|
|
1033
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3399264Z Syncing repository: link-assistant/agent
|
|
1034
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3400943Z ##[group]Getting Git version info
|
|
1035
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3401582Z Working directory is '/home/runner/work/agent/agent'
|
|
1036
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3402518Z [command]/usr/bin/git version
|
|
1037
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3472761Z git version 2.52.0
|
|
1038
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3499692Z ##[endgroup]
|
|
1039
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3515752Z Temporarily overriding HOME='/home/runner/work/_temp/5bbeece1-a9cc-4dc0-ac3a-2b59c2993084' before making global git config changes
|
|
1040
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3518421Z Adding repository directory to the temporary git global config as a safe directory
|
|
1041
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3522638Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/agent/agent
|
|
1042
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3563086Z Deleting the contents of '/home/runner/work/agent/agent'
|
|
1043
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3566535Z ##[group]Initializing the repository
|
|
1044
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3571239Z [command]/usr/bin/git init /home/runner/work/agent/agent
|
|
1045
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3679660Z hint: Using 'master' as the name for the initial branch. This default branch name
|
|
1046
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3680687Z hint: will change to "main" in Git 3.0. To configure the initial branch name
|
|
1047
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3681577Z hint: to use in all of your new repositories, which will suppress this warning,
|
|
1048
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3682243Z hint: call:
|
|
1049
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3682586Z hint:
|
|
1050
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3683647Z hint: git config --global init.defaultBranch <name>
|
|
1051
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3684551Z hint:
|
|
1052
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3685082Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
|
|
1053
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3685937Z hint: 'development'. The just-created branch can be renamed via this command:
|
|
1054
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3686900Z hint:
|
|
1055
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3687281Z hint: git branch -m <name>
|
|
1056
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3687706Z hint:
|
|
1057
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3688265Z hint: Disable this message with "git config set advice.defaultBranchName false"
|
|
1058
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3689313Z Initialized empty Git repository in /home/runner/work/agent/agent/.git/
|
|
1059
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3695313Z [command]/usr/bin/git remote add origin https://github.com/link-assistant/agent
|
|
1060
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3729519Z ##[endgroup]
|
|
1061
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3730731Z ##[group]Disabling automatic garbage collection
|
|
1062
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3734513Z [command]/usr/bin/git config --local gc.auto 0
|
|
1063
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3763007Z ##[endgroup]
|
|
1064
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3764213Z ##[group]Setting up auth
|
|
1065
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3770773Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
|
|
1066
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.3801035Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
|
|
1067
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.4125320Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
|
|
1068
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.4158898Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
|
|
1069
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.4402253Z [command]/usr/bin/git config --local --name-only --get-regexp ^includeIf\.gitdir:
|
|
1070
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.4433022Z [command]/usr/bin/git submodule foreach --recursive git config --local --show-origin --name-only --get-regexp remote.origin.url
|
|
1071
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.4688312Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
|
|
1072
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.4721718Z ##[endgroup]
|
|
1073
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.4722933Z ##[group]Fetching the repository
|
|
1074
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:33.4731572Z [command]/usr/bin/git -c protocol.version=2 fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/*
|
|
1075
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2597554Z From https://github.com/link-assistant/agent
|
|
1076
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2599520Z * [new branch] issue-100-a059c6e915ea -> origin/issue-100-a059c6e915ea
|
|
1077
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2601297Z * [new branch] issue-102-6e0a44052594 -> origin/issue-102-6e0a44052594
|
|
1078
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2602949Z * [new branch] issue-104-09ef4d9a60d7 -> origin/issue-104-09ef4d9a60d7
|
|
1079
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2604788Z * [new branch] issue-106-00050382cea1 -> origin/issue-106-00050382cea1
|
|
1080
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2606549Z * [new branch] issue-14-8a0de63c9ac0 -> origin/issue-14-8a0de63c9ac0
|
|
1081
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2608133Z * [new branch] issue-16-02a98d18139d -> origin/issue-16-02a98d18139d
|
|
1082
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2609613Z * [new branch] issue-18-ee9e687096a6 -> origin/issue-18-ee9e687096a6
|
|
1083
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2611050Z * [new branch] issue-2-f427e195b913 -> origin/issue-2-f427e195b913
|
|
1084
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2612452Z * [new branch] issue-20-8704d00e8b4e -> origin/issue-20-8704d00e8b4e
|
|
1085
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2613895Z * [new branch] issue-22-3ae2871ca86c -> origin/issue-22-3ae2871ca86c
|
|
1086
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2615385Z * [new branch] issue-24-9e1c4ee0ed15 -> origin/issue-24-9e1c4ee0ed15
|
|
1087
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2617095Z * [new branch] issue-26-1a4b69adfb64 -> origin/issue-26-1a4b69adfb64
|
|
1088
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2618516Z * [new branch] issue-28-227b62c91030 -> origin/issue-28-227b62c91030
|
|
1089
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2620051Z * [new branch] issue-30-8c53504315c4 -> origin/issue-30-8c53504315c4
|
|
1090
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2621778Z * [new branch] issue-32-693cfcfdd6d5 -> origin/issue-32-693cfcfdd6d5
|
|
1091
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2623525Z * [new branch] issue-34-a5a973ebd576 -> origin/issue-34-a5a973ebd576
|
|
1092
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2624959Z * [new branch] issue-36-33c80c585287 -> origin/issue-36-33c80c585287
|
|
1093
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2626588Z * [new branch] issue-38-d6620330d024 -> origin/issue-38-d6620330d024
|
|
1094
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2628057Z * [new branch] issue-39-481b45eeff2b -> origin/issue-39-481b45eeff2b
|
|
1095
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2629514Z * [new branch] issue-41-9e36c91cba9a -> origin/issue-41-9e36c91cba9a
|
|
1096
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2630944Z * [new branch] issue-43-1d50271986ab -> origin/issue-43-1d50271986ab
|
|
1097
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2632379Z * [new branch] issue-45-a036d9c72e61 -> origin/issue-45-a036d9c72e61
|
|
1098
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2633841Z * [new branch] issue-47-b7704cc6b9a4 -> origin/issue-47-b7704cc6b9a4
|
|
1099
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2635624Z * [new branch] issue-49-bef878bb5d38 -> origin/issue-49-bef878bb5d38
|
|
1100
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2637443Z * [new branch] issue-51-bf685c43c881 -> origin/issue-51-bf685c43c881
|
|
1101
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2638931Z * [new branch] issue-53-f9aa867296d4 -> origin/issue-53-f9aa867296d4
|
|
1102
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2640407Z * [new branch] issue-54-54fd1e88bb01 -> origin/issue-54-54fd1e88bb01
|
|
1103
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2641826Z * [new branch] issue-58-bc11cbdc23dd -> origin/issue-58-bc11cbdc23dd
|
|
1104
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2643420Z * [new branch] issue-6-097eb11195ee -> origin/issue-6-097eb11195ee
|
|
1105
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2645051Z * [new branch] issue-60-e248fa950850 -> origin/issue-60-e248fa950850
|
|
1106
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2646765Z * [new branch] issue-61-e7041ade0469 -> origin/issue-61-e7041ade0469
|
|
1107
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2648296Z * [new branch] issue-62-c8dd711e089c -> origin/issue-62-c8dd711e089c
|
|
1108
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2649796Z * [new branch] issue-66-4b5b645ed022 -> origin/issue-66-4b5b645ed022
|
|
1109
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2651496Z * [new branch] issue-68-c0a8954ce69f -> origin/issue-68-c0a8954ce69f
|
|
1110
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2653008Z * [new branch] issue-7-8850c3e4bc8b -> origin/issue-7-8850c3e4bc8b
|
|
1111
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2654626Z * [new branch] issue-70-1e5f73ed6b3c -> origin/issue-70-1e5f73ed6b3c
|
|
1112
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2656593Z * [new branch] issue-72-6975e4e75bc7 -> origin/issue-72-6975e4e75bc7
|
|
1113
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2658419Z * [new branch] issue-76-fe9d73dc3365 -> origin/issue-76-fe9d73dc3365
|
|
1114
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2660277Z * [new branch] issue-77-677ebcec7a83 -> origin/issue-77-677ebcec7a83
|
|
1115
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2662067Z * [new branch] issue-78-06a95192a461 -> origin/issue-78-06a95192a461
|
|
1116
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2663840Z * [new branch] issue-8-62be6460b721 -> origin/issue-8-62be6460b721
|
|
1117
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2665617Z * [new branch] issue-81-d58ba5a0ef88 -> origin/issue-81-d58ba5a0ef88
|
|
1118
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2667661Z * [new branch] issue-82-506d1d545d4e -> origin/issue-82-506d1d545d4e
|
|
1119
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2669520Z * [new branch] issue-84-bb28b273e804 -> origin/issue-84-bb28b273e804
|
|
1120
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2671354Z * [new branch] issue-86-cadafe19d775 -> origin/issue-86-cadafe19d775
|
|
1121
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2673140Z * [new branch] issue-88-49422a8421a1 -> origin/issue-88-49422a8421a1
|
|
1122
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2674889Z * [new branch] issue-89-9a1b6226b579 -> origin/issue-89-9a1b6226b579
|
|
1123
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2676848Z * [new branch] issue-9-17ad0ffde65c -> origin/issue-9-17ad0ffde65c
|
|
1124
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2678646Z * [new branch] issue-93-40e3ae1a14d3 -> origin/issue-93-40e3ae1a14d3
|
|
1125
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2680427Z * [new branch] issue-96-109dff6454e6 -> origin/issue-96-109dff6454e6
|
|
1126
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2682018Z * [new branch] main -> origin/main
|
|
1127
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2683446Z * [new tag] v0.0.10 -> v0.0.10
|
|
1128
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2684707Z * [new tag] v0.0.11 -> v0.0.11
|
|
1129
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2685971Z * [new tag] v0.0.12 -> v0.0.12
|
|
1130
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2687416Z * [new tag] v0.0.13 -> v0.0.13
|
|
1131
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2688894Z * [new tag] v0.0.14 -> v0.0.14
|
|
1132
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2690145Z * [new tag] v0.0.15 -> v0.0.15
|
|
1133
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2691393Z * [new tag] v0.0.16 -> v0.0.16
|
|
1134
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2692618Z * [new tag] v0.0.17 -> v0.0.17
|
|
1135
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2693864Z * [new tag] v0.1.0 -> v0.1.0
|
|
1136
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2695099Z * [new tag] v0.1.1 -> v0.1.1
|
|
1137
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2696535Z * [new tag] v0.1.2 -> v0.1.2
|
|
1138
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2697785Z * [new tag] v0.1.3 -> v0.1.3
|
|
1139
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2699082Z * [new tag] v0.1.4 -> v0.1.4
|
|
1140
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2700344Z * [new tag] v0.2.0 -> v0.2.0
|
|
1141
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2701610Z * [new tag] v0.2.1 -> v0.2.1
|
|
1142
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2702819Z * [new tag] v0.3.0 -> v0.3.0
|
|
1143
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2703987Z * [new tag] v0.3.1 -> v0.3.1
|
|
1144
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2705124Z * [new tag] v0.4.0 -> v0.4.0
|
|
1145
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2706253Z * [new tag] v0.5.0 -> v0.5.0
|
|
1146
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2707587Z * [new tag] v0.5.1 -> v0.5.1
|
|
1147
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2708735Z * [new tag] v0.5.2 -> v0.5.2
|
|
1148
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2709862Z * [new tag] v0.5.3 -> v0.5.3
|
|
1149
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2710967Z * [new tag] v0.6.0 -> v0.6.0
|
|
1150
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2712091Z * [new tag] v0.6.1 -> v0.6.1
|
|
1151
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2713172Z * [new tag] v0.6.2 -> v0.6.2
|
|
1152
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2714231Z * [new tag] v0.6.3 -> v0.6.3
|
|
1153
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2715175Z * [new tag] v0.7.0 -> v0.7.0
|
|
1154
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2763795Z [command]/usr/bin/git branch --list --remote origin/main
|
|
1155
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2795512Z origin/main
|
|
1156
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2807101Z [command]/usr/bin/git rev-parse refs/remotes/origin/main
|
|
1157
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2828496Z 1730fae4a399750f320591a6dfd62cf40363f2ac
|
|
1158
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2835019Z ##[endgroup]
|
|
1159
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2836840Z ##[group]Determining the checkout info
|
|
1160
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2838461Z ##[endgroup]
|
|
1161
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2841231Z [command]/usr/bin/git sparse-checkout disable
|
|
1162
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2881408Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig
|
|
1163
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2908325Z ##[group]Checking out the ref
|
|
1164
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.2913016Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main
|
|
1165
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.3307034Z Switched to a new branch 'main'
|
|
1166
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.3309134Z branch 'main' set up to track 'origin/main'.
|
|
1167
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.3318665Z ##[endgroup]
|
|
1168
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.3354592Z [command]/usr/bin/git log -1 --format=%H
|
|
1169
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.3377322Z 1730fae4a399750f320591a6dfd62cf40363f2ac
|
|
1170
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.3658950Z ##[group]Run actions/setup-node@v4
|
|
1171
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.3659725Z with:
|
|
1172
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.3660163Z node-version: 20.x
|
|
1173
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.3660829Z registry-url: https://registry.npmjs.org
|
|
1174
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.3661650Z always-auth: false
|
|
1175
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.3662199Z check-latest: false
|
|
1176
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.3663000Z token: ***
|
|
1177
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.3663464Z ##[endgroup]
|
|
1178
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.5507941Z Found in cache @ /opt/hostedtoolcache/node/20.19.6/x64
|
|
1179
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:34.5514852Z ##[group]Environment details
|
|
1180
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:36.6398830Z node: v20.19.6
|
|
1181
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:36.6399367Z npm: 10.8.2
|
|
1182
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:36.6399696Z yarn: 1.22.22
|
|
1183
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:36.6403302Z ##[endgroup]
|
|
1184
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:36.6537008Z ##[group]Run npm install --legacy-peer-deps
|
|
1185
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:36.6537425Z [36;1mnpm install --legacy-peer-deps[0m
|
|
1186
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:36.6582515Z shell: /usr/bin/bash -e {0}
|
|
1187
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:36.6582781Z env:
|
|
1188
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:36.6583017Z NPM_CONFIG_USERCONFIG: /home/runner/work/_temp/.npmrc
|
|
1189
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:36.6583353Z NODE_AUTH_TOKEN: XXXXX-XXXXX-XXXXX-XXXXX
|
|
1190
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:36.6583889Z ##[endgroup]
|
|
1191
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:47.4451180Z
|
|
1192
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:47.4460291Z > @link-assistant/agent@0.7.0 prepare
|
|
1193
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:47.4460965Z > cd .. && husky || true
|
|
1194
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:47.4461207Z
|
|
1195
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:47.5017793Z
|
|
1196
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:47.5023376Z added 658 packages, and audited 659 packages in 11s
|
|
1197
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:47.5023988Z
|
|
1198
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:47.5024309Z 143 packages are looking for funding
|
|
1199
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:47.5024902Z run `npm fund` for details
|
|
1200
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:47.5044130Z
|
|
1201
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:47.5045696Z 2 high severity vulnerabilities
|
|
1202
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:47.5046060Z
|
|
1203
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:47.5046608Z To address all issues, run:
|
|
1204
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:47.5047071Z npm audit fix
|
|
1205
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:47.5047305Z
|
|
1206
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:47.5047526Z Run `npm audit` for details.
|
|
1207
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:47.5365451Z ##[group]Run node scripts/setup-npm.mjs
|
|
1208
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:47.5365791Z [36;1mnode scripts/setup-npm.mjs[0m
|
|
1209
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:47.5404868Z shell: /usr/bin/bash -e {0}
|
|
1210
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:47.5405115Z env:
|
|
1211
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:47.5405343Z NPM_CONFIG_USERCONFIG: /home/runner/work/_temp/.npmrc
|
|
1212
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:47.5405672Z NODE_AUTH_TOKEN: XXXXX-XXXXX-XXXXX-XXXXX
|
|
1213
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:47.5405923Z ##[endgroup]
|
|
1214
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:49.2759727Z 10.8.2
|
|
1215
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:49.2812978Z Current npm version: 10.8.2
|
|
1216
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:51.9928359Z
|
|
1217
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:51.9929292Z removed 45 packages, and changed 107 packages in 3s
|
|
1218
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:51.9929656Z
|
|
1219
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:51.9942308Z 16 packages are looking for funding
|
|
1220
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:51.9943090Z run `npm fund` for details
|
|
1221
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:52.1043106Z npm warn Unknown user config "always-auth". This will stop working in the next major version of npm.
|
|
1222
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:52.1052392Z 11.7.0
|
|
1223
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:52.1100414Z Updated npm version: 11.7.0
|
|
1224
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:52.1187317Z ##[group]Run # Count changeset files (excluding README.md and config.json)
|
|
1225
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:52.1187888Z [36;1m# Count changeset files (excluding README.md and config.json)[0m
|
|
1226
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:52.1188407Z [36;1mCHANGESET_COUNT=$(find js/.changeset -name "*.md" ! -name "README.md" | wc -l)[0m
|
|
1227
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:52.1188863Z [36;1mecho "Found $CHANGESET_COUNT changeset file(s)"[0m
|
|
1228
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:52.1189359Z [36;1mecho "has_changesets=$([[ $CHANGESET_COUNT -gt 0 ]] && echo 'true' || echo 'false')" >> $GITHUB_OUTPUT[0m
|
|
1229
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:52.1222610Z shell: /usr/bin/bash -e {0}
|
|
1230
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:52.1222836Z env:
|
|
1231
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:52.1223058Z NPM_CONFIG_USERCONFIG: /home/runner/work/_temp/.npmrc
|
|
1232
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:52.1223399Z NODE_AUTH_TOKEN: XXXXX-XXXXX-XXXXX-XXXXX
|
|
1233
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:52.1223648Z ##[endgroup]
|
|
1234
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:52.1420903Z Found 1 changeset file(s)
|
|
1235
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:52.1471981Z ##[group]Run node scripts/version-and-commit.mjs --mode changeset
|
|
1236
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:52.1472427Z [36;1mnode scripts/version-and-commit.mjs --mode changeset[0m
|
|
1237
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:52.1503924Z shell: /usr/bin/bash -e {0}
|
|
1238
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:52.1504149Z env:
|
|
1239
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:52.1504372Z NPM_CONFIG_USERCONFIG: /home/runner/work/_temp/.npmrc
|
|
1240
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:52.1504711Z NODE_AUTH_TOKEN: XXXXX-XXXXX-XXXXX-XXXXX
|
|
1241
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:52.1504968Z ##[endgroup]
|
|
1242
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:54.6902099Z Parsed configuration: { mode: 'changeset', bumpType: '', description: '(none)' }
|
|
1243
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:54.7098105Z Checking for remote changes...
|
|
1244
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:55.0210866Z From https://github.com/link-assistant/agent
|
|
1245
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:55.0211592Z * branch main -> FETCH_HEAD
|
|
1246
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:55.0360995Z 1730fae4a399750f320591a6dfd62cf40363f2ac
|
|
1247
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:55.0431323Z 1730fae4a399750f320591a6dfd62cf40363f2ac
|
|
1248
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:55.0443505Z Current version: 0.7.0
|
|
1249
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:55.0444138Z Running changeset version...
|
|
1250
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:55.1380593Z npm warn Unknown user config "always-auth". This will stop working in the next major version of npm.
|
|
1251
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:55.1614074Z
|
|
1252
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:55.1614629Z > @link-assistant/agent@0.7.0 changeset:version
|
|
1253
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:55.1615285Z > node ../scripts/changeset-version.mjs
|
|
1254
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:55.1615938Z
|
|
1255
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:55.9264691Z Running changeset version...
|
|
1256
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:56.0173838Z npm warn Unknown user config "always-auth". This will stop working in the next major version of npm.
|
|
1257
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:56.6182476Z š¦ All files have been updated. Review them and commit at your leisure
|
|
1258
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:56.6335069Z
|
|
1259
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:56.6335657Z Synchronizing package-lock.json...
|
|
1260
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:56.7235365Z npm warn Unknown user config "always-auth". This will stop working in the next major version of npm.
|
|
1261
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4563052Z npm error code ERESOLVE
|
|
1262
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4564667Z npm error ERESOLVE could not resolve
|
|
1263
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4565100Z npm error
|
|
1264
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4577710Z npm error While resolving: @opentui/solid@0.1.60
|
|
1265
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4578778Z npm error Found: solid-js@1.9.10
|
|
1266
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4579346Z npm error node_modules/solid-js
|
|
1267
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4579925Z npm error solid-js@"^1.9.10" from the root project
|
|
1268
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4580767Z npm error peer solid-js@"^1.6.12" from @solid-primitives/event-bus@1.1.2
|
|
1269
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4581610Z npm error node_modules/@solid-primitives/event-bus
|
|
1270
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4582424Z npm error @solid-primitives/event-bus@"^1.1.2" from the root project
|
|
1271
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4583320Z npm error 2 more (@solid-primitives/utils, babel-preset-solid)
|
|
1272
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4583886Z npm error
|
|
1273
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4584349Z npm error Could not resolve dependency:
|
|
1274
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4585047Z npm error peer solid-js@"1.9.9" from @opentui/solid@0.1.60
|
|
1275
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4585721Z npm error node_modules/@opentui/solid
|
|
1276
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4586627Z npm error @opentui/solid@"^0.1.46" from the root project
|
|
1277
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4587178Z npm error
|
|
1278
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4587698Z npm error Conflicting peer dependency: solid-js@1.9.9
|
|
1279
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4588266Z npm error node_modules/solid-js
|
|
1280
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4588641Z npm error peer solid-js@"1.9.9" from @opentui/solid@0.1.60
|
|
1281
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4589017Z npm error node_modules/@opentui/solid
|
|
1282
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4589656Z npm error @opentui/solid@"^0.1.46" from the root project
|
|
1283
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4590226Z npm error
|
|
1284
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4590755Z npm error Fix the upstream dependency conflict, or retry
|
|
1285
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4591550Z npm error this command with --force or --legacy-peer-deps
|
|
1286
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4592477Z npm error to accept an incorrect (and potentially broken) dependency resolution.
|
|
1287
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4593160Z npm error
|
|
1288
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4593438Z npm error
|
|
1289
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4593832Z npm error For a full report see:
|
|
1290
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4594661Z npm error /home/runner/.npm/_logs/2026-01-08T02_23_56_694Z-eresolve-report.txt
|
|
1291
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4601393Z npm error A complete log of this run can be found in: /home/runner/.npm/_logs/2026-01-08T02_23_56_694Z-debug-0.log
|
|
1292
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4750741Z
|
|
1293
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4751536Z ā
Version bump complete with synchronized package-lock.json
|
|
1294
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4870808Z Error: ENOENT: no such file or directory, open './js/package.json'
|
|
1295
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.4939481Z ##[error]Process completed with exit code 1.
|
|
1296
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.5063446Z Post job cleanup.
|
|
1297
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.6010360Z [command]/usr/bin/git version
|
|
1298
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.6050441Z git version 2.52.0
|
|
1299
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.6100406Z Temporarily overriding HOME='/home/runner/work/_temp/cf0d2711-5e3c-4ae8-af39-9dc006e0c0a0' before making global git config changes
|
|
1300
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.6101292Z Adding repository directory to the temporary git global config as a safe directory
|
|
1301
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.6105264Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/agent/agent
|
|
1302
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.6138897Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
|
|
1303
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.6171495Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
|
|
1304
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.6399733Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
|
|
1305
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.6424040Z http.https://github.com/.extraheader
|
|
1306
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.6436997Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
|
|
1307
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.6467148Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
|
|
1308
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.6692751Z [command]/usr/bin/git config --local --name-only --get-regexp ^includeIf\.gitdir:
|
|
1309
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.6723472Z [command]/usr/bin/git submodule foreach --recursive git config --local --show-origin --name-only --get-regexp remote.origin.url
|
|
1310
|
+
+Release UNKNOWN STEP 2026-01-08T02:23:58.7062620Z Cleaning up orphan processes
|
|
1311
|
+
diff --git a/scripts/changeset-version.mjs b/scripts/changeset-version.mjs
|
|
1312
|
+
index 856b31f..16068d9 100644
|
|
1313
|
+
--- a/scripts/changeset-version.mjs
|
|
1314
|
+
+++ b/scripts/changeset-version.mjs
|
|
1315
|
+
@@ -26,7 +26,7 @@ try {
|
|
1316
|
+
await $`npx changeset version`;
|
|
1317
|
+
|
|
1318
|
+
console.log('\nSynchronizing package-lock.json...');
|
|
1319
|
+
- await $`npm install --package-lock-only`;
|
|
1320
|
+
+ await $`npm install --package-lock-only --legacy-peer-deps`;
|
|
1321
|
+
|
|
1322
|
+
console.log('\nā
Version bump complete with synchronized package-lock.json');
|
|
1323
|
+
} catch (error) {
|
|
1324
|
+
diff --git a/scripts/instant-version-bump.mjs b/scripts/instant-version-bump.mjs
|
|
1325
|
+
index 79d31ab..c1a34dd 100644
|
|
1326
|
+
--- a/scripts/instant-version-bump.mjs
|
|
1327
|
+
+++ b/scripts/instant-version-bump.mjs
|
|
1328
|
+
@@ -108,7 +108,7 @@ try {
|
|
1329
|
+
|
|
1330
|
+
// Synchronize package-lock.json
|
|
1331
|
+
console.log('\nSynchronizing package-lock.json...');
|
|
1332
|
+
- await $`cd js && npm install --package-lock-only`;
|
|
1333
|
+
+ await $`cd js && npm install --package-lock-only --legacy-peer-deps`;
|
|
1334
|
+
|
|
1335
|
+
console.log('\nā
Instant version bump complete');
|
|
1336
|
+
console.log(`Version: ${oldVersion} ā ${newVersion}`);
|