Skip to content

fix: remove provenance flag from npm publish command and adjust envir… #8

fix: remove provenance flag from npm publish command and adjust envir…

fix: remove provenance flag from npm publish command and adjust envir… #8

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
verify:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [20, 22, 24]
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Verify package
run: npm run verify