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 e416567 commit f8547acCopy full SHA for f8547ac
.github/workflows/build.yaml
@@ -50,7 +50,11 @@ jobs:
50
run: npm run test:playwright
51
# Limiting playwright tests to macOS for now due to issues with xvfb on Linux and
52
# timeouts on windows
53
- if: runner.os == 'macOS'
+ #
54
+ # NOTE: We disable playwright tests when buf is not installed on the system $PATH
55
+ # for now so we don't have the extension attempting to resolve the installation.
56
+ # We'll need to find a way to intercept the call from playwright's VS Code extension.
57
+ if: runner.os == 'macOS' && matrix.buf-bin=setup == 'buf-on-path'
58
- name: check diff
59
run: node scripts/gh-diffcheck.mjs
60
- name: upload-playwright-test-results
0 commit comments