Skip to content
This repository was archived by the owner on Jan 16, 2026. It is now read-only.

Commit cd7352f

Browse files
committed
add check
1 parent 4b6eea4 commit cd7352f

5 files changed

Lines changed: 15 additions & 4 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,15 @@
1212
"version": "21.6.1"
1313
},
1414
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {}
15+
},
16+
"customizations": {
17+
"vscode": {
18+
"extensions": [
19+
"ms-azuretools.vscode-docker",
20+
"ms-vscode.vscode-typescript-next",
21+
"ms-vscode.cpptools-extension-pack"
22+
]
23+
}
1524
}
1625

1726
// Use 'forwardPorts' to make a list of ports inside the container available locally.

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ jobs:
6262
node-version-file: ".nvmrc"
6363
- name: Build
6464
run: docker compose up ci
65+
- name: Check files
66+
run: ls . */
6567
- name: Install dependencies
6668
run: corepack yarn install --immutable
6769
- name: Run tests

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,5 @@
6464
"typescript.tsdk": ".yarn/sdks/typescript/lib",
6565
"typescript.enablePromptUseWorkspaceTsdk": true,
6666
"cmake.sourceDirectory": "C:/Users/cabbage/code/wasm/libxml_wasm/wasm",
67-
"jest.jestCommandLine": "\".yarn/releases/yarn-4.1.0.cjs\" run jest"
67+
"jest.jestCommandLine": "corepack yarn run jest"
6868
}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
```bash
66
# Build also libraries
77
docker compose up ci
8-
# Build only wasm (requires libraries to be built)
8+
# Build only bindings
99
docker compose up wasm
1010
```
1111

@@ -24,7 +24,7 @@ const html = `
2424
<body>
2525
<div class="container">
2626
<h1 class="title">Hello world</h1>
27-
<p>Good</p>
27+
<p>Text</p>
2828
</div>
2929
</body>
3030
</html>

compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ x-base-service: &base-service
99
- embuilder-cache:/emsdk/upstream/emscripten/cache
1010
working_dir: /src
1111
environment:
12-
- TERM=xterm-256color
12+
- TERM=xterm-256color
1313

1414
services:
1515
ci:

0 commit comments

Comments
 (0)