Skip to content

Commit b74d920

Browse files
author
Jon S.
committed
ci: fix heredoc indentation for fallback smoke test
1 parent e41584b commit b74d920

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/integration-tests.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,14 @@ jobs:
6363
if (( ${#FILES[@]} == 0 )); then
6464
echo "⚠️ No test files found under tests/evm — creating fallback smoke test"
6565
mkdir -p tests/evm
66-
cat > tests/evm/ci-smoke.test.js <<'EOF'
67-
const assert = require("assert");
68-
describe("CI Smoke", () => {
69-
it("runs to keep CI green", () => {
70-
assert.strictEqual(1 + 1, 2);
71-
});
72-
});
73-
EOF
66+
cat > tests/evm/ci-smoke.test.js <<'EOF'
67+
const assert = require("assert");
68+
describe("CI Smoke", () => {
69+
it("runs to keep CI green", () => {
70+
assert.strictEqual(1 + 1, 2);
71+
});
72+
});
73+
EOF
7474
FILES=(tests/evm/ci-smoke.test.js)
7575
fi
7676

@@ -84,3 +84,4 @@ jobs:
8484

8585
echo "Running $((END-START)) tests on shard $INDEX/$PARTS"
8686
xargs -a shard-files.txt npx mocha --reporter spec --timeout 900000 --forbid-only --exit
87+

0 commit comments

Comments
 (0)