From 5176adc5b2cfd3685caa49b8e0b97046fe74c474 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Wed, 25 Sep 2024 10:42:35 -0400 Subject: [PATCH] Run linting on the generated project in CI --- tests/default.test.mjs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/default.test.mjs b/tests/default.test.mjs index cd607c8..500b0ba 100644 --- a/tests/default.test.mjs +++ b/tests/default.test.mjs @@ -54,6 +54,14 @@ describe('basic functionality', function () { ); }); + it('successfully lints', async function () { + let result = await execa('pnpm', ['lint'], { + cwd: join(tmpDir.path, appName), + }); + + console.log(result.stdout); + }); + it('successfully builds', async function () { let result = await execa('pnpm', ['build'], { cwd: join(tmpDir.path, appName),