-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run linting on the generated project in CI
- Loading branch information
1 parent
6ec50f8
commit 5176adc
Showing
1 changed file
with
8 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,6 +54,14 @@ describe('basic functionality', function () { | |
); | ||
}); | ||
|
||
it('successfully lints', async function () { | ||
let result = await execa('pnpm', ['lint'], { | ||
Check failure on line 58 in tests/default.test.mjs GitHub Actions / Lint & Testtests/default.test.mjs > basic functionality > successfully lints
|
||
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), | ||
|