Skip to content

Add renovate.json (#24) #3

Add renovate.json (#24)

Add renovate.json (#24) #3

Workflow file for this run

name: Publish package to npm
on:
push:
branches:
- main
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: npm
registry-url: 'https://registry.npmjs.org'
- name: Install npm packages
run: npm ci
- name: Publish to npm
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
- name: Generate release note
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true