Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ jobs:
# release days; GITHUB_TOKEN raises that to 5000/hr. Read-only default token — no extra perms needed.
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# No LevelCode build runs Playwright browser tests, but an upstream extension (copilot) pulls in
# playwright-core, whose postinstall downloads a Chromium from cdn.playwright.dev. That network hop
# flaked the x64 build (getaddrinfo ENOTFOUND) while arm64 passed the SAME commit — so skip it and
# the whole class of flake goes away. Same spirit as the GITHUB_TOKEN mitigation above.
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: "1"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand Down