Skip to content

Commit 6608be3

Browse files
committed
fix(ci): allow WebAssembly test fixtures
1 parent 3f392d0 commit 6608be3

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/check.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ jobs:
6565
- name: Reject tracked compiler artifacts
6666
shell: pwsh
6767
run: |
68-
$artifacts = git ls-files -- '*.wasm' '*.wat'
68+
# Textual .wat files under test/fixtures are hand-written test inputs.
69+
$artifacts = git ls-files -- '*.wasm' '*.wat' ':(exclude)editors/vscode/test/fixtures/*.wat'
6970
if ($artifacts) {
7071
Write-Error "Generated WebAssembly artifacts must not be tracked:`n$artifacts"
7172
}

0 commit comments

Comments
 (0)