We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed13fef commit f995eb0Copy full SHA for f995eb0
.github/workflows/ci.yml
@@ -14,7 +14,7 @@ jobs:
14
runs-on: ubuntu-latest
15
strategy:
16
matrix:
17
- node-version: [20, 22, 24]
+ node-version: [20, 22]
18
steps:
19
- uses: actions/checkout@v6
20
- name: Use Node.js ${{ matrix.node-version }}
@@ -104,5 +104,6 @@ jobs:
104
run: npm install -g npm@latest
105
- name: Disable pre- and post-publish actions
106
run: 'sed -i -E "s/\"((pre|post)publish)/\"ignore:\1/" package.json'
107
- if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]'
+ - name: Publish to npm
108
+ if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]'
109
run: npm publish --tag latest
0 commit comments