Skip to content

chore(deps): update semantic-release monorepo (major) #1314

chore(deps): update semantic-release monorepo (major)

chore(deps): update semantic-release monorepo (major) #1314

Workflow file for this run

name: NPM release
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
npm-release:
name: Create a npm release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 12
- name: Install dependencies
run: npm ci
- name: Run Test
run: npm run test
- name: Build package
run: npm run build
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}