From 15f2172b45285a285adf00f2af2296547778502a Mon Sep 17 00:00:00 2001 From: "Marc H. Weiner" Date: Tue, 24 Feb 2026 09:58:14 -0500 Subject: [PATCH 1/2] chore: use @logfoxai scope in release workflow --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 185672e..eab0925 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: with: node-version: 20 registry-url: https://npm.pkg.github.com - scope: "@logspacehq" + scope: "@logfoxai" - run: npm ci - run: npm run build - run: npx autorel@^2 From 8e82fc4600e5e2b098a974288d8a4f7787171b7b Mon Sep 17 00:00:00 2001 From: "Marc H. Weiner" Date: Tue, 24 Feb 2026 10:09:33 -0500 Subject: [PATCH 2/2] chore: add CI workflow for PRs --- .github/workflows/ci.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..15ade06 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,27 @@ +name: CI +on: + pull_request: + branches: [main] +permissions: + contents: read + packages: read +jobs: + ci: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + registry-url: https://npm.pkg.github.com + scope: "@logfoxai" + cache: 'npm' + - name: Set up npm token + run: | + npm config set //npm.pkg.github.com/:_authToken "$NPM_TOKEN" + env: + NPM_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Install deps + run: npm ci + - name: Build + run: npm run build