Skip to content

chore(deps): bump dset from 3.1.3 to 3.1.4 in /{{cookiecutter.project… #80

chore(deps): bump dset from 3.1.3 to 3.1.4 in /{{cookiecutter.project…

chore(deps): bump dset from 3.1.3 to 3.1.4 in /{{cookiecutter.project… #80

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 }}