Skip to content

Commit 3695e56

Browse files
committed
0.1.0
1 parent ee40172 commit 3695e56

3 files changed

Lines changed: 12 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
types: [published]
66

77
jobs:
8+
89
publish:
910
runs-on: ubuntu-latest
1011
environment:
@@ -26,10 +27,16 @@ jobs:
2627
- name: Install dependencies
2728
run: npm ci
2829

30+
- name: Lint
31+
run: npm run lint
32+
33+
- name: Test
34+
run: npm test -- --runInBand
35+
2936
- name: Build
3037
run: npm run build
3138

3239
- name: Publish to npm
3340
env:
3441
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
35-
run: npm publish --provenance
42+
run: npm publish --access public

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
22
"name": "skilleton",
3-
"version": "0.0.1",
3+
"version": "0.1.0",
44
"description": "Skills skeleton: deterministic AI skill dependency manager",
55
"type": "commonjs",
6+
"private": false,
67
"bin": {
78
"skilleton": "dist/bin/skilleton.js"
89
},

0 commit comments

Comments
 (0)