Skip to content

Commit e2ba2e4

Browse files
committed
Ignore Errors on Install
1 parent ffe8243 commit e2ba2e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/npm-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
with:
3737
node-version: 12
3838
registry-url: https://registry.npmjs.org/
39-
- run: yarn install --silent
39+
- run: yarn install; exit 0
4040
- run: yarn build
4141
- run: npm publish
4242
env:
@@ -51,7 +51,7 @@ jobs:
5151
with:
5252
node-version: 12
5353
registry-url: https://npm.pkg.github.com/
54-
- run: yarn install --silent
54+
- run: yarn install; exit 0
5555
- run: yarn build
5656
env:
5757
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 commit comments

Comments
 (0)