Skip to content

chore(deps): ncu

chore(deps): ncu #78

Workflow file for this run

name: Release
on:
push:
branches:
- main
- next
- next-major
- beta
- alpha
- '*.x'
permissions:
contents: read
jobs:
release:
name: Releasing
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- 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: Test and building
run: |
npm run lint
npm run build
npm test
- name: Installing release dependencies
run: |
npm i -D @qiwi/multi-semantic-release @semantic-release/changelog @semantic-release/git
- name: Semantic release
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx multi-semantic-release