Skip to content

docs: Update comments in the code for better clarity #14

docs: Update comments in the code for better clarity

docs: Update comments in the code for better clarity #14

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies and build
run: |
pnpm install
pnpm run release
- name: Publish
env:
GITHUB_TOKEN: ${{ secrets.DEPLOY_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release --branches main