Skip to content

chore(deps): update dependency husky to v9 #44

chore(deps): update dependency husky to v9

chore(deps): update dependency husky to v9 #44

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
tests:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Read .nvmrc
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
id: nvm
- name: Set Node.js from .nvmrc
uses: actions/setup-node@v4
with:
node-version: "${{ steps.nvm.outputs.NVMRC }}"
- name: Install
run: yarn install
- name: Lint
run: yarn lint
- name: Build
run: yarn build
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm run release