Skip to content

Commit

Permalink
Merge pull request #17 from localnerve/rc-1.0.12
Browse files Browse the repository at this point in the history
@1.0.12 - devdep updates, provnance
  • Loading branch information
localnerve authored Oct 2, 2024
2 parents f13e08b + 926910b commit 22385ef
Show file tree
Hide file tree
Showing 4 changed files with 98 additions and 45 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Deploy
on:
push:
branches: [ main ]

jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- name: Verify
run: npm run lint && npm test
- name: Publish
if: ${{ success() }}
run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 0 additions & 2 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
name: Verify
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

Expand Down
104 changes: 67 additions & 37 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@localnerve/hmac-symmetric",
"version": "1.0.11",
"version": "1.0.12",
"description": "A library to generate hmac and symmetrically encrypted payloads",
"main": "index.js",
"type": "module",
Expand Down Expand Up @@ -44,14 +44,14 @@
},
"homepage": "https://github.com/localnerve/hmac-symmetric#readme",
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/cli": "^7.25.6",
"@babel/preset-env": "^7.25.4",
"@eslint/js": "^9.9.1",
"@eslint/js": "^9.11.1",
"cross-env": "^7.0.3",
"eslint": "^9.9.1",
"eslint-plugin-jest": "^28.8.0",
"eslint": "^9.11.1",
"eslint-plugin-jest": "^28.8.3",
"glob": "^11.0.0",
"globals": "^15.9.0",
"globals": "^15.10.0",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"tar": "^7.4.3"
Expand Down

0 comments on commit 22385ef

Please sign in to comment.