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 bb57972 commit a8869baCopy full SHA for a8869ba
.github/workflows/release-npm.yml
@@ -4,6 +4,10 @@ on:
4
push:
5
branches: [release/*]
6
7
+permissions:
8
+ id-token: write
9
+ contents: read
10
+
11
jobs:
12
publish-npm:
13
name: Publish NPM module
@@ -13,12 +17,11 @@ jobs:
17
- uses: actions/checkout@v5
14
18
- uses: actions/setup-node@v5
15
19
with:
16
- node-version: '22.x'
20
+ node-version: '24.x'
21
cache: 'npm'
22
cache-dependency-path: javascript/package-lock.json
- - run: npm install-test
23
+ registry-url: 'https://registry.npmjs.org'
24
+ - run: npm install-ci-test
25
+ working-directory: javascript
26
+ - run: npm publish
27
working-directory: javascript
- - uses: cucumber/[email protected]
- with:
- npm-token: ${{ secrets.NPM_TOKEN }}
- working-directory: javascript
0 commit comments