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
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
branches: [main]
permissions:
contents: read
packages: read
jobs:
ci:
runs-on: ubuntu-latest
Expand All @@ -12,6 +13,11 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
registry-url: 'https://npm.pkg.github.com'
scope: '@logfoxai'
- name: Configure npm auth
run: |
echo "@logfoxai:registry=https://npm.pkg.github.com/" > .npmrc
echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" >> .npmrc
- run: npm ci
- run: npm run build
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

CLI tool for sending local development logs to Logfox.

**npm setup:** Uses private `@logfoxai` packages. See [home](https://github.com/logfoxai/home#npm--github-packages-setup) for the one-time npm + gh auth setup.

## Installation

```bash
Expand Down