1 parent 3f392d0 commit 6608be3Copy full SHA for 6608be3
1 file changed
.github/workflows/check.yml
@@ -65,7 +65,8 @@ jobs:
65
- name: Reject tracked compiler artifacts
66
shell: pwsh
67
run: |
68
- $artifacts = git ls-files -- '*.wasm' '*.wat'
+ # Textual .wat files under test/fixtures are hand-written test inputs.
69
+ $artifacts = git ls-files -- '*.wasm' '*.wat' ':(exclude)editors/vscode/test/fixtures/*.wat'
70
if ($artifacts) {
71
Write-Error "Generated WebAssembly artifacts must not be tracked:`n$artifacts"
72
}
0 commit comments