Skip to content

build(deps-dev): update dependency eslint-plugin-unicorn to v71 - autoclosed #710

build(deps-dev): update dependency eslint-plugin-unicorn to v71 - autoclosed

build(deps-dev): update dependency eslint-plugin-unicorn to v71 - autoclosed #710

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 22
- 24
steps:
- uses: actions/checkout@v6
- uses: volta-cli/action@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- name: Set git identity
run: |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
- run: npm test
release:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: volta-cli/action@v4
- run: npm ci
- run: npm audit signatures
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}