Skip to content

chore: bump to v1.4.4 #26

chore: bump to v1.4.4

chore: bump to v1.4.4 #26

Workflow file for this run

name: NPM Publish
on:
push:
tags: v*
jobs:
build:
runs-on: ubuntu-latest
name: NPM Publish
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Build
run: yarn build
- name: Test
run: yarn test
- name: Publish
uses: JS-DevTools/npm-publish@v2
with:
token: ${{ secrets.NPM_TOKEN }}
tag: ${{ endsWith(github.ref_name, 'next') && 'next' || 'latest' }}