We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 841669d commit 65bb3a8Copy full SHA for 65bb3a8
.github/workflows/test.yml .github/workflows/build.yml
@@ -15,7 +15,5 @@ jobs:
15
run: npm install
16
- name: Eslint
17
run: npm run lint
18
- - name: Test
19
- run: npm run test
20
- - name: Compile and build
+ - name: Build
21
run: npm run build
.github/workflows/publish.yml
@@ -0,0 +1,21 @@
1
+name: Package Publish
2
+
3
+on:
4
+ release:
5
+ types: [created]
6
7
+jobs:
8
+ publish:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v3
12
+ - uses: actions/setup-node@v3
13
+ with:
14
+ node-version: 22
+ - name: Install dependencies
+ run: npm install
+ run: npm run build
+ - uses: JS-DevTools/npm-publish@v1
+ token: ${{ secrets.NPM_TOKEN }}
0 commit comments