Skip to content

feat: updated stack #155

feat: updated stack

feat: updated stack #155

Workflow file for this run

name: release
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
semantic-release:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version-file: 'package.json'
- run: bun install --frozen-lockfile
- name: Check tests before release
run: bun lint
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4
with:
extra_plugins: |
@semantic-release/git
semantic_version: 19
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}