jqgrid_utils 1.26.5 → 1.27.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,25 @@
1
+ name: Publish Package to npmjs
2
+ on: push
3
+ jobs:
4
+ build:
5
+ runs-on: ubuntu-latest
6
+ permissions:
7
+ contents: read
8
+ id-token: write
9
+ if: github.repository_owner == 'myridia'
10
+
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+
14
+ # Setup .npmrc file to publish to npm
15
+ - uses: actions/setup-node@v4
16
+ with:
17
+ node-version: '22.x'
18
+ registry-url: 'https://registry.npmjs.org'
19
+ - run: npm install --package-lock-only
20
+ - run: npm ci
21
+ - run: npm publish --provenance --access public
22
+ env:
23
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
24
+
25
+