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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
node-version: [20.x, 22.x]
node-version: [20.x, 22.x, 24.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
node-version: 24
- name: Install dependencies
run: npm ci
- name: Build the project
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/production-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
node-version: 24
registry-url: https://npm.pkg.github.com/
scope: '@numbersprotocol'
- name: Install dependencies
Expand All @@ -43,11 +43,14 @@ jobs:
needs: version-check
if: needs.version-check.outputs.changed == 'true'
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
node-version: 24
registry-url: 'https://registry.npmjs.org'
scope: '@numbersprotocol'
- name: Install dependencies
Expand All @@ -56,8 +59,6 @@ jobs:
run: MODE=prod npm run build
- name: Deploy to NPM registry
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

purge-cdn-cache:
needs: publish-npm
Expand All @@ -76,7 +77,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
node-version: 24
- name: Install dependencies
run: npm ci
- name: Build the project
Expand Down
23 changes: 23 additions & 0 deletions .omni/af42200c-github-npm/memory.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Workspace Context

<!-- This file is auto-maintained. The Repositories section is refreshed -->
<!-- by the system. The AI should maintain Environment & Key Discoveries. -->

**Workspace root (absolute path):** `/home/workspaces/conversations/af42200c-bf31-4914-9f0b-af6eacf96600`

## Repositories

- **`capture-eye/`** — Branch: `omni/af42200c/capture-eye`, Remote: `numbersprotocol/capture-eye`
- [![](https://data.jsdelivr.com/v1/package/npm/@numbersprotocol/capture-eye/badge?style=rounded)](https://www.jsdelivr.com/package/npm/@numbersprotocol/capture-eye)

## Environment & Tools

- Local runtime observed: Node v22.13.0, npm 10.9.2; npm Trusted Publishing requires npm CLI 11.5.1+ and Node 22.14.0+.
- GitHub Actions release workflows use Node 24; CI matrix covers Node 20.x, 22.x, and 24.x.

## Key Discoveries

- `capture-eye/.github/workflows/production-release.yml` publishes `@numbersprotocol/capture-eye` to npm from the `publish-npm` job using npm Trusted Publishing/OIDC; npm package is configured with GitHub Actions trusted publisher.

---
_Last system refresh: 2026-05-04 07:48 UTC_
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@
],
"author": "Numbers Protocol",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/numbersprotocol/capture-eye.git"
},
"dependencies": {
"lit": "^3.0.0"
},
Expand Down
Loading