summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.generate.ts
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.generate.ts')
-rwxr-xr-x.github/workflows/ci.generate.ts13
1 files changed, 12 insertions, 1 deletions
diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts
index 8d11e297f..9446a44b8 100755
--- a/.github/workflows/ci.generate.ts
+++ b/.github/workflows/ci.generate.ts
@@ -697,7 +697,7 @@ const ci = {
{
name: "Test debug (fast)",
if: [
- "matrix.job == 'test' && matrix.profile == 'debug' && ",
+ "matrix.job == 'test' && matrix.profile == 'debug' &&",
"!startsWith(matrix.os, 'ubuntu')",
].join("\n"),
run: [
@@ -709,6 +709,17 @@ const ci = {
env: { CARGO_PROFILE_DEV_DEBUG: 0 },
},
{
+ name: "Test examples debug",
+ if: "matrix.job == 'test' && matrix.profile == 'debug'",
+ run: [
+ // Only regression tests here for now.
+ // Regression test for https://github.com/denoland/deno/pull/19615.
+ "cargo run -p deno_runtime --example extension_with_esm",
+ "cargo run -p deno_runtime --example extension_with_esm --features include_js_files_for_snapshotting",
+ ].join("\n"),
+ env: { CARGO_PROFILE_DEV_DEBUG: 0 },
+ },
+ {
name: "Test release",
if: [
"matrix.job == 'test' && matrix.profile == 'release' &&",