We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da6dfde commit 4f4b26cCopy full SHA for 4f4b26c
1 file changed
.github/workflows/publish-npm.yml
@@ -6,22 +6,20 @@ jobs:
6
build:
7
runs-on: ubuntu-latest
8
steps:
9
-
10
- name: Checkout
11
uses: actions/checkout@v4
12
13
- name: Setup Node
14
uses: actions/setup-node@v4
15
with:
16
- registry-url: 'https://registry.npmjs.org'
17
+ node-version: "24"
+ registry-url: "https://registry.npmjs.org"
+
18
- name: Install dependencies
19
run: npm install
20
21
- name: Create build
22
run: npm run build
23
24
- - name: Publish package on NPM 📦
+ - name: Publish package on NPM 📦
25
run: npm publish
26
- env:
27
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments