Skip to content

chore(build-deps): Bump mocha and chai versions and remove sinon/sino… #19

chore(build-deps): Bump mocha and chai versions and remove sinon/sino…

chore(build-deps): Bump mocha and chai versions and remove sinon/sino… #19

Workflow file for this run

name: Release
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Use Node.js 24
uses: actions/setup-node@v6
with:
node-version: 24
cache: npm
- name: Run tests and linting
run: |
npm ci
npm run lint --if-present
npm run prettier
npm test
env:
CI: true
- name: Create release using semantic-release
run: npx semantic-release
env:
# GITHUB_TOKEN is added automatically by GitHub
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
CI: true