We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e1157f commit dc413b2Copy full SHA for dc413b2
.github/workflows/main.yml
@@ -95,13 +95,14 @@ jobs:
95
persist-credentials: false
96
- uses: actions/setup-node@v4
97
with:
98
- node-version: lts/*
99
cache: npm
+ node-version: lts/*
100
registry-url: 'https://registry.npmjs.org'
101
+ # Ensure npm 11.5.1 or later is installed
102
+ - name: Update npm
103
+ run: npm install -g npm@latest
104
- run: npm ci
105
# Branches that will release new versions are defined in .releaserc.json
106
- run: npm run release
107
env:
108
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
- NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
- NPM_CONFIG_PROVENANCE: true
0 commit comments