@ultimat3/cli 20.1.1 → 20.1.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ultimat3/cli",
3
- "version": "20.1.1",
3
+ "version": "20.1.2",
4
4
  "description": "The `x` binary: new, dev, build, verify, generate, db, mcp, doctor, deploy",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -37,34 +37,34 @@
37
37
  },
38
38
  "dependencies": {
39
39
  "@babel/core": "^7.28.4",
40
- "@ultimat3/action": "20.1.1",
41
- "@ultimat3/admin": "20.1.1",
42
- "@ultimat3/ai": "20.1.1",
43
- "@ultimat3/auth": "20.1.1",
44
- "@ultimat3/cache": "20.1.1",
45
- "@ultimat3/core": "20.1.1",
46
- "@ultimat3/db": "20.1.1",
47
- "@ultimat3/entity": "20.1.1",
48
- "@ultimat3/flags": "20.1.1",
49
- "@ultimat3/http": "20.1.1",
50
- "@ultimat3/i18n": "20.1.1",
51
- "@ultimat3/jobs": "20.1.1",
52
- "@ultimat3/mail": "20.1.1",
53
- "@ultimat3/manifest": "20.1.1",
54
- "@ultimat3/mcp": "20.1.1",
55
- "@ultimat3/money": "20.1.1",
56
- "@ultimat3/notify": "20.1.1",
57
- "@ultimat3/policy": "20.1.1",
58
- "@ultimat3/pwa": "20.1.1",
59
- "@ultimat3/query": "20.1.1",
60
- "@ultimat3/realtime": "20.1.1",
61
- "@ultimat3/render": "20.1.1",
62
- "@ultimat3/schema": "20.1.1",
63
- "@ultimat3/scraping": "20.1.1",
64
- "@ultimat3/seo": "20.1.1",
65
- "@ultimat3/storage": "20.1.1",
66
- "@ultimat3/testing": "20.1.1",
67
- "@ultimat3/time": "20.1.1",
40
+ "@ultimat3/action": "20.1.2",
41
+ "@ultimat3/admin": "20.1.2",
42
+ "@ultimat3/ai": "20.1.2",
43
+ "@ultimat3/auth": "20.1.2",
44
+ "@ultimat3/cache": "20.1.2",
45
+ "@ultimat3/core": "20.1.2",
46
+ "@ultimat3/db": "20.1.2",
47
+ "@ultimat3/entity": "20.1.2",
48
+ "@ultimat3/flags": "20.1.2",
49
+ "@ultimat3/http": "20.1.2",
50
+ "@ultimat3/i18n": "20.1.2",
51
+ "@ultimat3/jobs": "20.1.2",
52
+ "@ultimat3/mail": "20.1.2",
53
+ "@ultimat3/manifest": "20.1.2",
54
+ "@ultimat3/mcp": "20.1.2",
55
+ "@ultimat3/money": "20.1.2",
56
+ "@ultimat3/notify": "20.1.2",
57
+ "@ultimat3/policy": "20.1.2",
58
+ "@ultimat3/pwa": "20.1.2",
59
+ "@ultimat3/query": "20.1.2",
60
+ "@ultimat3/realtime": "20.1.2",
61
+ "@ultimat3/render": "20.1.2",
62
+ "@ultimat3/schema": "20.1.2",
63
+ "@ultimat3/scraping": "20.1.2",
64
+ "@ultimat3/seo": "20.1.2",
65
+ "@ultimat3/storage": "20.1.2",
66
+ "@ultimat3/testing": "20.1.2",
67
+ "@ultimat3/time": "20.1.2",
68
68
  "babel-preset-solid": "^1.9.15"
69
69
  }
70
70
  }
@@ -45,11 +45,22 @@ on:
45
45
  push:
46
46
  pull_request:
47
47
 
48
+ # A newer push to a branch makes the run already in flight for it worthless, so it is cancelled —
49
+ # except on the default branch, where every commit keeps its own verdict: that group is keyed by
50
+ # SHA, so nothing there can supersede anything.
51
+ concurrency:
52
+ group: ci-\${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) && github.sha || github.ref }}
53
+ cancel-in-progress: true
54
+
48
55
  permissions:
49
56
  contents: read
50
57
 
51
58
  jobs:
52
59
  check:
60
+ # A branch in THIS repository with an open pull request fires both events for one commit, and
61
+ # the push run already gates that exact tree — so the pull_request run is skipped, not paid for
62
+ # twice. A pull request from a FORK fires no push here, and it still runs.
63
+ if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
53
64
  runs-on: ubuntu-latest
54
65
  # A bound on a HANG, not on cost: a step that never returns holds a runner until GitHub's
55
66
  # six-hour default expires, and the failure is invisible for all six of them.
@@ -63,6 +74,13 @@ jobs:
63
74
  # whoever took the app at its word. Never \`latest\`: a Bun minor landing unannounced is a
64
75
  # runtime change nobody chose.
65
76
  bun-version: '${REQUIRED_BUN}'
77
+ # Bun's download cache, keyed on the lockfile: \`bin/setup\`'s install then links from disk
78
+ # instead of fetching every package again on every run.
79
+ - uses: actions/cache@v6
80
+ with:
81
+ path: ~/.bun/install/cache
82
+ key: bun-\${{ runner.os }}-\${{ hashFiles('bun.lock') }}
83
+ restore-keys: bun-\${{ runner.os }}-
66
84
  # Two steps rather than one \`&&\`, so the log names which half failed and times each.
67
85
  - run: bin/setup
68
86
  - run: bin/check