Skip to content

build(deps-dev): bump @biomejs/biome from 2.3.13 to 2.3.14 (#66) #31

build(deps-dev): bump @biomejs/biome from 2.3.13 to 2.3.14 (#66)

build(deps-dev): bump @biomejs/biome from 2.3.13 to 2.3.14 (#66) #31

Workflow file for this run

name: release-please
permissions:
contents: write
pull-requests: write
id-token: write
issues: write
on:
push:
branches:
- master
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: node
package-name: named-placeholders
changelog-path: 'Changelog.md'
- uses: actions/checkout@v4
if: ${{ steps.release.outputs.release_created }}
- uses: actions/setup-node@v4
if: ${{ steps.release.outputs.release_created }}
with:
check-latest: true
node-version: lts/*
registry-url: 'https://registry.npmjs.org'
- run: npm ci
if: ${{ steps.release.outputs.release_created }}
- run: npm publish --provenance
if: ${{ steps.release.outputs.release_created }}
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}