Skip to content

update onClick & onChange jsdoc with manual deferUpdate example #325

update onClick & onChange jsdoc with manual deferUpdate example

update onClick & onChange jsdoc with manual deferUpdate example #325

Workflow file for this run

name: Publish dev
on:
workflow_dispatch:
push:
branches:
- master
jobs:
npm:
name: npm
runs-on: ubuntu-latest
if: github.repository_owner == 'djobbo'
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://registry.npmjs.org/
cache: 'pnpm'
- name: Turbo cache
id: turbo-cache
uses: actions/cache@v2
with:
path: .turbo
key: turbo-${{ github.job }}-${{ github.ref_name }}-${{ github.sha }}
restore-keys: |
turbo-${{ github.job }}-${{ github.ref_name }}-
- name: Publish
run: |
pnpm ci:install
pnpm publish:dev
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}