Skip to content

Commit 88fe6dd

Browse files
committed
Fixed prettier issue
1 parent 2dcb54e commit 88fe6dd

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

__tests__/main.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* functions and objects. For example, the core module is mocked in this test,
66
* so that the actual '@actions/core' module is not imported.
77
*/
8+
// eslint-disable-next-line jest/no-commented-out-tests
89
/*import { jest } from '@jest/globals'
910
import * as core from '../__fixtures__/core.js'
1011
import { wait } from '../__fixtures__/wait.js'

src/main.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ export async function run(): Promise<void> {
88
const schemaPath: string = core.getInput('schemaPath')
99
const validate: boolean = core.getBooleanInput('validate')
1010
const diff: boolean = core.getBooleanInput('createDiff')
11-
// @ts-expect-error Construction works
1211
const ajv = new Ajv()
1312

1413
let message: string =

0 commit comments

Comments
 (0)