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 603783c commit 989ca6dCopy full SHA for 989ca6d
.github/workflows/publish.yml
@@ -23,6 +23,11 @@ jobs:
23
node-version: 18
24
registry-url: "https://registry.npmjs.org/"
25
26
+ - name: Configure npm to ignore scripts
27
+ run: |
28
+ echo "ignore-scripts=true" > .npmrc
29
+ cat .npmrc
30
+
31
- name: Install dependencies
32
run: npm ci
33
@@ -45,6 +50,6 @@ jobs:
45
50
echo "New version: $(npm pkg get version)"
46
51
47
52
- name: Publish to npm
48
- run: npm publish --access public --ignore-scripts
53
+ run: npm publish --access public
49
54
env:
55
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
.npmrc
@@ -0,0 +1 @@
1
+ignore-scripts=true
0 commit comments