- run: npm run lint
- run: npm run coverage
- publish-npm:
- needs: build
- runs-on: ubuntu-latest
-
- steps:
- - name: Checkout
- uses: actions/checkout@v2
-
- name: Setup Node
uses: actions/setup-node@v2
with:
run: npm ci --production
- name: Publish
- run: npm publish
+ run: npm publish --tags
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
{
"name": "poolifier",
- "version": "v2.0.0-beta.4",
+ "version": "v2.0.0-beta.5",
"description": "A fast, easy to use Node.js Worker Thread Pool and Cluster Pool implementation",
"main": "lib/index.js",
"scripts": {