Skip to content

chore(deps): bump micromatch from 4.0.7 to 4.0.8 in /{{cookiecutter.p… #79

chore(deps): bump micromatch from 4.0.7 to 4.0.8 in /{{cookiecutter.p…

chore(deps): bump micromatch from 4.0.7 to 4.0.8 in /{{cookiecutter.p… #79

name: Semantic Release
on:
push:
branches:
- main
permissions:
contents: write
issues: write
jobs:
semantic-release:
runs-on: ubuntu-latest
environment: dev
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "lts/*"
- name: Install Dependencies
run: npm clean-install
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: npm audit signatures
- name: Run Semantic Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}