Skip to content

Release Node.js Package #4

Release Node.js Package

Release Node.js Package #4

Workflow file for this run

name: Release Node.js Package
on:
release:
types: [created]
jobs:
release-nest-problem-details-filter:
defaults:
run:
working-directory: libs/nest-problem-details-filter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm test
- run: npm run lint
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}