@indigoai-us/hq-cli 5.37.1 → 5.37.3
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/.github/workflows/ci.yml +9 -1
- package/package.json +3 -3
package/.github/workflows/ci.yml
CHANGED
|
@@ -8,6 +8,14 @@ on:
|
|
|
8
8
|
jobs:
|
|
9
9
|
build:
|
|
10
10
|
runs-on: ubuntu-latest
|
|
11
|
+
strategy:
|
|
12
|
+
fail-fast: false
|
|
13
|
+
matrix:
|
|
14
|
+
# 20 is the declared engines floor (package.json engines.node >=20),
|
|
15
|
+
# 22 is the current dev/publish baseline. Running the suite on 20
|
|
16
|
+
# enforces the floor so it stays real, not aspirational.
|
|
17
|
+
node-version: [20, 22]
|
|
18
|
+
name: build (node ${{ matrix.node-version }})
|
|
11
19
|
steps:
|
|
12
20
|
- uses: actions/checkout@v4
|
|
13
21
|
- uses: pnpm/action-setup@v4
|
|
@@ -15,7 +23,7 @@ jobs:
|
|
|
15
23
|
version: 10
|
|
16
24
|
- uses: actions/setup-node@v4
|
|
17
25
|
with:
|
|
18
|
-
node-version:
|
|
26
|
+
node-version: ${{ matrix.node-version }}
|
|
19
27
|
cache: pnpm
|
|
20
28
|
- run: pnpm install --frozen-lockfile --config.minimumReleaseAge=1440
|
|
21
29
|
# generate-dsn.mjs only fatals when GITHUB_JOB=publish, so CI builds with
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@indigoai-us/hq-cli",
|
|
3
|
-
"version": "5.37.
|
|
3
|
+
"version": "5.37.3",
|
|
4
4
|
"description": "HQ by Indigo management CLI \u2014 modules and cloud sync",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"clean": "rm -rf dist"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@indigoai-us/hq-cloud": "^6.3.
|
|
18
|
+
"@indigoai-us/hq-cloud": "^6.3.1",
|
|
19
19
|
"@indigoai-us/hq-onboarding": "^0.1.0",
|
|
20
20
|
"@sentry/node": "^10.49.0",
|
|
21
21
|
"chalk": "^5.3.0",
|
|
@@ -49,6 +49,6 @@
|
|
|
49
49
|
"license": "MIT",
|
|
50
50
|
"type": "module",
|
|
51
51
|
"engines": {
|
|
52
|
-
"node": ">=
|
|
52
|
+
"node": ">=20.0.0"
|
|
53
53
|
}
|
|
54
54
|
}
|