Skip to content

Commit 7c690d0

Browse files
authored
Merge pull request #61 from angiejones/refactor/consolidate-tools
Refactor: consolidate 32 tools → 18
2 parents fab3315 + aac7f21 commit 7c690d0

File tree

14 files changed

+725
-1848
lines changed

14 files changed

+725
-1848
lines changed

.github/workflows/publish.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Publish to npm
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
publish:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Checkout repository
13+
uses: actions/checkout@v4
14+
15+
- name: Set up Node.js
16+
uses: actions/setup-node@v4
17+
with:
18+
node-version: 22
19+
registry-url: https://registry.npmjs.org
20+
21+
- name: Install dependencies
22+
run: npm ci
23+
24+
- name: Publish to npm
25+
run: npm publish --access public
26+
env:
27+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

AGENTS.md

Lines changed: 43 additions & 235 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)