Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
10 changes: 7 additions & 3 deletions .github/workflows/embeddings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,18 @@ jobs:
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683

- uses: pnpm/action-setup@v4
with:
version: 9.15.4

- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af
with:
node-version: '20'
cache: 'npm'
cache: 'pnpm'

- run: npm ci
- run: pnpm install --frozen-lockfile

- run: npm run build -w @retort-plugins/router
- run: pnpm --filter @retort-plugins/router build

- name: Regenerate embeddings index
run: node packages/router/scripts/generate-embeddings.mjs
Expand Down
22 changes: 13 additions & 9 deletions .github/workflows/vscode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,30 +13,34 @@ jobs:
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683

- uses: pnpm/action-setup@v4
with:
version: 9.15.4

- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af
with:
node-version: '20'
cache: 'npm'
cache: 'pnpm'

- run: npm ci
- run: pnpm install --frozen-lockfile

- name: Build router
run: npm run build -w @retort-plugins/router
run: pnpm --filter @retort-plugins/router build

- name: Test router
run: npm run test -w @retort-plugins/router
run: pnpm --filter @retort-plugins/router test

- name: Build UI
run: npm run build -w @retort-plugins/ui
run: pnpm --filter @retort-plugins/ui build

- name: Build state-watcher
run: npm run build -w @retort-plugins/state-watcher
run: pnpm --filter @retort-plugins/state-watcher build

- name: Build VSCode extension
run: npm run build -w @retort-plugins/vscode
run: pnpm --filter @retort-plugins/vscode build

- name: Typecheck all
run: npm run typecheck --workspaces --if-present
run: pnpm -r --if-present typecheck

- name: Lint all
run: npm run lint --workspaces --if-present
run: pnpm -r --if-present lint
Loading
Loading