Skip to content

chore: follow kebab-case naming notations #159

chore: follow kebab-case naming notations

chore: follow kebab-case naming notations #159

Workflow file for this run

name: Npm Publish
on:
push:
branches:
- master
jobs:
publish-npm:
if: contains(github.event.head_commit.message, 'release')
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
registry-url: https://registry.npmjs.org/
- name: Install pnpm
uses: pnpm/action-setup@v2.0.1
with:
version: 8.7.0
- name: Install Dependencies
run: pnpm install --no-frozen-lockfile
- name: Build
run: pnpm run build
- name: Publish to NPM
run: pnpm -r publish --access public --no-git-checks
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}