Skip to content

Commit ac78c24

Browse files
committed
added stub npmjs workflow for publishing
1 parent 9fc721e commit ac78c24

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/npmjs.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Publish to NPM
2+
on:
3+
release:
4+
types: [ published ]
5+
jobs:
6+
publish:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout repository
10+
uses: actions/checkout@v4
11+
12+
- name: Set up Node.js
13+
uses: actions/setup-node@v6
14+
with:
15+
node-version: 22
16+

0 commit comments

Comments
 (0)