Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
90d5314
APIGOV-32118 more updates
Mar 11, 2026
a1b52d6
APIGOV-32124 Engage CLI - Migrate & Refactor Caching
Mar 11, 2026
537a78e
APIGOV-32118 Delete yarn.lock file
Mar 11, 2026
d198eeb
Merge pull request #274 from appcelerator/APIGOV-32118
kasuvy Mar 16, 2026
7707cbb
Merge branch 'engage-5.0' into APIGOV-32124
Mar 16, 2026
e70e846
Merge pull request #275 from appcelerator/APIGOV-32124
kasuvy Mar 16, 2026
1e2676e
Fix lint
Mar 16, 2026
abd2870
Engage CLI - Migrate & Refactor Results Rendering Functionality
Mar 18, 2026
1cbd5a0
Merge pull request #276 from appcelerator/APIGOV-32125
kasuvy Mar 18, 2026
bb8fb9a
APIGOV-32126 Get Command Migrate - Int Checkin
Mar 26, 2026
bd2b888
APIGOV-32126 Updates to engage get command
kasuvy Mar 30, 2026
cec1742
Merge pull request #277 from appcelerator/APIGOV-32126
kasuvy Mar 30, 2026
c571fa7
APIGOV-32330 Engage CLI - Commands - APPLY
kasuvy Apr 1, 2026
67e90ef
APIGOV-32330 Updates
kasuvy Apr 1, 2026
d8de0c7
Merge pull request #278 from appcelerator/APIGOV-32330
kasuvy Apr 1, 2026
00165b9
Refactor Commands and Move Files
kasuvy Apr 3, 2026
f036c2d
APIGOV-32383 CREATE command updates
kasuvy Apr 8, 2026
1968d41
APIGOV-32384 - DELETE command updates
sbolosan Apr 8, 2026
6a58cde
Merge pull request #279 from appcelerator/APIGOV-32383
kasuvy Apr 8, 2026
0963cc3
APIGOV-32384 - separate business logic and service layer
sbolosan Apr 8, 2026
47b044a
APIGOV-32384 - remove usage log
sbolosan Apr 9, 2026
4a36a95
APIGOV-32386 Engage CLI - Commands - PRODUCTIZE
kasuvy Apr 20, 2026
c6ddc47
Merge pull request #280 from appcelerator/APIGOV-32386
kasuvy Apr 20, 2026
a99400e
Merge branch 'engage-5.0' into APIGOV-32384
kasuvy Apr 20, 2026
4057b96
Merge pull request #281 from appcelerator/APIGOV-32384
kasuvy Apr 21, 2026
239b747
APIGOV-32385 Engage CLI - Commands - EDIT
kasuvy Apr 21, 2026
5a01cf5
Merge pull request #282 from appcelerator/APIGOV-32385
kasuvy Apr 21, 2026
601d3d4
APIGOV-32522 Engage CLI - Commands - INSTALL
kasuvy Apr 29, 2026
3310b4b
Merge pull request #283 from appcelerator/APIGOV-32522
kasuvy Apr 30, 2026
3d6c4e3
APIGOV-32525 Engage CLI - Commands - INSTALL - AWS Agents (On-Prem & …
kasuvy May 5, 2026
804e304
APIGOV-32525 Updates
kasuvy May 5, 2026
4a9ffc2
APIGOV-32525 Updates
kasuvy May 6, 2026
66fa517
Merge pull request #284 from appcelerator/APIGOV-32525
kasuvy May 6, 2026
13dbbbe
APIGOV-32526 Engage CLI - Commands - INSTALL - Azure Agents (On-Prem …
kasuvy May 7, 2026
35a501f
Merge pull request #285 from appcelerator/APIGOV-32526
kasuvy May 8, 2026
543f3e7
APIGOV-32524 Engage CLI - Commands - INSTALL - ApigeeX Agents (On-Pre…
kasuvy May 11, 2026
e7100be
Merge pull request #286 from appcelerator/APIGOV-32524
kasuvy May 11, 2026
36113df
APIGOV-32523 Engage CLI - Commands - INSTALL - Agents (On-Prem & SaaS)
kasuvy May 13, 2026
abec1d5
Merge pull request #287 from appcelerator/APIGOV-32523
kasuvy May 13, 2026
76d9e50
Code Review Changes
kasuvy May 18, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
with:
node-version: "20.x"
- name: Install dependencies
run: yarn
run: npm install
- name: Lint
run: yarn run gulp lint
run: npm run lint

MacOsTest:
needs: Lint
Expand All @@ -23,17 +23,17 @@ jobs:
strategy:
fail-fast: false
matrix:
nodeVersion: ["20.18.2", "22.13.1"]
nodeVersion: ["22.13.1", "24.14.1"]
os: [macos-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.nodeVersion }}
- name: Install dependencies
run: yarn
run: npm install
- name: Run tests
run: yarn run test
run: npm run test

WindowsTest:
needs: Lint
Expand All @@ -42,17 +42,17 @@ jobs:
strategy:
fail-fast: false
matrix:
nodeVersion: ["20.18.2", "22.13.1"]
nodeVersion: ["22.13.1", "24.14.1"]
os: [windows-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.nodeVersion }}
- name: Install dependencies
run: yarn
run: npm install
- name: Run tests
run: yarn run test
run: npm run test

UbuntuTest:
needs: Lint
Expand All @@ -61,7 +61,7 @@ jobs:
strategy:
fail-fast: false
matrix:
nodeVersion: ["20.18.2", "22.13.1"]
nodeVersion: ["22.13.1", "24.14.1"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
Expand All @@ -71,6 +71,6 @@ jobs:
- name: Install libsecret
run: sudo apt-get install -y libsecret-1-0
- name: Install dependencies
run: yarn
run: npm install
- name: Run tests
run: yarn run test
run: npm run test
Loading
Loading