Skip to content

Commit

Permalink
Merge pull request #11 from pactumjs/update-dependencies
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
leelaprasadv authored Sep 17, 2023
2 parents ebf3e0a + 48ba258 commit f3ab30f
Show file tree
Hide file tree
Showing 3 changed files with 541 additions and 7 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Publish
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v2
with:
node-version: '12.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm test
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_SW_TOKEN }}
Loading

0 comments on commit f3ab30f

Please sign in to comment.