Skip to content

add cached function #58

add cached function

add cached function #58

Workflow file for this run

name: Publish Package to npmjs
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 7
run_install: |
- recursive: true
args: [--frozen-lockfile, --strict-peer-dependencies]
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: '17.x'
registry-url: 'https://registry.npmjs.org'
- run: npm run package
- run: npm publish .
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}