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
14 changes: 6 additions & 8 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
name: ESlint Test
name: ESLint

on:
pull_request:
branches: '**'

jobs:
build:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node: [20]
steps:
- uses: actions/checkout@v4
- name: Setup Node 20
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
- run: npm install
node-version: 24
- run: npm ci
- run: npm run lint
17 changes: 8 additions & 9 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,22 @@
name: NPM Publish

on:
release:
types: [created]

jobs:
build:
publish:
runs-on: ubuntu-latest
strategy:
matrix:
node: [20]
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- name: Setup Node 20
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
node-version: 24
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run build
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- run: npm publish --provenance --access public
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,9 @@ lerna-debug.log
# System Files
.DS_Store
Thumbs.db

# Node Version Managers
.tool-versions

# AI Agents or Tools
CLAUDE.md
Loading