Add --no-git-checks and ignore playwright (#5602)

This commit is contained in:
Benjamin Lu
2025-09-16 19:00:00 -07:00
committed by GitHub
parent 0483630f82
commit ede43c5e5c

View File

@@ -88,6 +88,8 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: pnpm install --frozen-lockfile run: pnpm install --frozen-lockfile
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: '1'
- name: Build types - name: Build types
run: pnpm build:types run: pnpm build:types
@@ -131,7 +133,7 @@ jobs:
- name: Publish package - name: Publish package
if: steps.check_npm.outputs.exists == 'false' if: steps.check_npm.outputs.exists == 'false'
run: pnpm publish --access public --tag "${{ inputs.dist_tag }}" run: pnpm publish --access public --tag "${{ inputs.dist_tag }}" --no-git-checks
working-directory: dist working-directory: dist
env: env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}