Skip to content

chore: update eslint & prettier #20

chore: update eslint & prettier

chore: update eslint & prettier #20

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- main
- beta
pull_request:
branches:
- main
- beta
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "18.x"
cache: "yarn"
- run: yarn --frozen-lockfile
- run: yarn run lerna run prepublish
- run: yarn run lint
- run: yarn run test
- name: semantic release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/.npmrc
lerna exec --concurrency 1 -- npx --no-install semantic-release -e semantic-release-monorepo