Skip to content

Merge pull request #43 from compolabs/fix/bug-with-deposit #57

Merge pull request #43 from compolabs/fix/bug-with-deposit

Merge pull request #43 from compolabs/fix/bug-with-deposit #57

Workflow file for this run

name: Publish Package to npmjs
on:
push:
branches:
- main
jobs:
build:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: pnpm install
- name: Lint and Test
run: pnpm run lint
- name: Build package
run: pnpm run build
- name: Publish to npm
run: pnpm publish --access=public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}