Skip to content

fix: relax @typescript-eslint/dot-notation #33

fix: relax @typescript-eslint/dot-notation

fix: relax @typescript-eslint/dot-notation #33

Workflow file for this run

name: "Release"
on:
push:
branches: [main]
jobs:
release:
runs-on: "ubuntu-latest"
permissions:
contents: "write"
issues: "write"
pull-requests: "write"
id-token: "write"
steps:
- uses: "actions/[email protected]"
with:
fetch-depth: 0
persist-credentials: false
- name: "Setup Node.js"
uses: "actions/[email protected]"
with:
node-version: "22.x"
cache: "npm"
- 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"
run: "node --run release"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}