Skip to content

test: replace mocha chai with vitest (#62) #7

test: replace mocha chai with vitest (#62)

test: replace mocha chai with vitest (#62) #7

Workflow file for this run

name: Release
on:
push:
branches:
- 'master'
- 'next'
- 'beta'
- 'alpha'
permissions:
contents: write
issues: write # Allow creating issues if needed
packages: write # If you are publishing packages
actions: read
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
cache: yarn
node-version: lts/*
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release@23