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 864f97d commit 2949941Copy full SHA for 2949941
.github/workflows/CI.yml
@@ -130,6 +130,10 @@ jobs:
130
run: | #shell
131
rm -rf ./dist/*.tar.gz ./dist/*.zip
132
ls -l ./dist
133
+ test -f ./dist/darwin-arm64/minijson || exit 1
134
+ test -f ./dist/darwin-x64/minijson || exit 1
135
+ test -f ./dist/linux-x64/minijson || exit 1
136
+ test -f ./dist/win32-x64/minijson.exe || exit 1
137
138
- uses: actions/checkout@v4
139
@@ -146,6 +150,6 @@ jobs:
146
150
run: pnpm install
147
151
148
152
- name: Publish to npm
149
- run: pnpm publish --provenance --access public
153
+ run: pnpm publish --provenance --access public --no-git-checks
154
env:
155
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments