Skip to content

fix: Add lint rule to enforce camelCase event name (#25) #38

fix: Add lint rule to enforce camelCase event name (#25)

fix: Add lint rule to enforce camelCase event name (#25) #38

Workflow file for this run

name: Release
on:
push:
branches:
- master
jobs:
release:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: '16'
registry-url: 'https://registry.npmjs.org'
cache: 'yarn'
- run: yarn install
- run: yarn lerna publish from-package --dist-tag beta --yes
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}