Skip to content

fix: disable import/no-unresolved for better performance as suggested… #115

fix: disable import/no-unresolved for better performance as suggested…

fix: disable import/no-unresolved for better performance as suggested… #115

Workflow file for this run

name: Release
on:
push:
branches:
- master
- next
- feature/**
permissions:
contents: read # for checkout
jobs:
release:
env:
# Disable husky (git hooks) in CI, see: https://typicode.github.io/husky/#/?id=disable-husky-in-cidocker
HUSKY: 0
name: Release
runs-on: ubuntu-24.04
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
id-token: write # to enable use of OIDC for npm provenance
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-node@v6
with:
cache: npm
node-version-file: '.nvmrc'
registry-url: https://registry.npmjs.org/
- 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: Release package to npm and GitHub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm run release:ci