jqgrid_utils 1.26.5 → 1.27.0

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,22 @@
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
+ steps:
10
+ - uses: actions/checkout@v4
11
+ # Setup .npmrc file to publish to npm
12
+ - uses: actions/setup-node@v4
13
+ with:
14
+ node-version: '22.x'
15
+ registry-url: 'https://registry.npmjs.org'
16
+ - run: npm install --package-lock-only
17
+ - run: npm ci
18
+ - run: npm publish --provenance --access public
19
+ env:
20
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
21
+
22
+