Skip to content

Commit 7f867c1

Browse files
JoshMockmargaretjgussh-esh
authored
Rewrite in TypeScript, with some new priorities (#80)
Co-authored-by: margaretjgu <136839162+margaretjgu@users.noreply.github.com> Co-authored-by: Eyo Eshetu <eyo.eshetu@elastic.co>
1 parent b056a34 commit 7f867c1

323 files changed

Lines changed: 63906 additions & 9222 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.cursor/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/agents/agentic-workflows.agent.md

Lines changed: 0 additions & 143 deletions
This file was deleted.

.github/aw/actions-lock.json

Lines changed: 0 additions & 9 deletions
This file was deleted.

.github/aw/imports/.gitattributes

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/aw/imports/github/gh-aw/852cb06ad52958b402ed982b69957ffc57ca0619/.github_workflows_shared_mood.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/agentic-scenarios.yml

Lines changed: 0 additions & 39 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 24 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -4,41 +4,39 @@ on:
44
pull_request:
55
push:
66
branches:
7-
- main
7+
- mvp
88

99
permissions:
1010
contents: read
1111

1212
jobs:
13-
unit-tests:
14-
runs-on: ubuntu-latest
13+
test-node:
14+
name: Test Node.js
15+
strategy:
16+
matrix:
17+
os: [ubuntu-latest, macos-latest, windows-latest]
18+
node-version: [20.x, 22.x, 24.x, 25.x]
19+
runs-on: ${{ matrix.os }}
1520
steps:
1621
- uses: actions/checkout@v4
17-
- uses: actions/setup-go@v5
22+
- uses: actions/setup-node@v4
1823
with:
19-
go-version-file: go.mod
24+
node-version: ${{ matrix.node-version }}
25+
- name: Install
26+
run: npm install
2027
- name: Run unit tests
21-
run: go test ./...
28+
run: npm test
2229

23-
build:
24-
runs-on: ubuntu-latest
30+
test-bun:
31+
name: Test Bun
32+
strategy:
33+
matrix:
34+
os: [ubuntu-latest, macos-latest, windows-latest]
35+
runs-on: ${{ matrix.os }}
2536
steps:
2637
- uses: actions/checkout@v4
27-
- uses: actions/setup-go@v5
28-
with:
29-
go-version-file: go.mod
30-
- name: Build CLI
31-
run: go build ./cmd/elastic
32-
33-
functional-tests:
34-
runs-on: ubuntu-latest
35-
timeout-minutes: 30
36-
steps:
37-
- uses: actions/checkout@v4
38-
- uses: actions/setup-go@v5
39-
with:
40-
go-version-file: go.mod
41-
- name: Verify Docker daemon
42-
run: docker info
43-
- name: Run functional tests
44-
run: go test -tags functional ./tests/functional -v
38+
- uses: oven-sh/setup-bun@v2
39+
- name: Install
40+
run: bun install
41+
- name: Run unit tests
42+
run: bun test

.github/workflows/docs-drift.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/workflows/issue-triage.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

.github/workflows/mention-in-issue.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)