Skip to content

Commit 67029a8

Browse files
committed
Fixed prettier issues
1 parent 0aa32a7 commit 67029a8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
import * as core from '@actions/core'
22
//import { diffString } from 'json-diff'
3-
import Ajv from 'ajv/dist/2020'
3+
import Ajv from 'ajv'
44
import * as fs from 'fs'
55

66
export async function run(): Promise<void> {
77
try {
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
1112
const ajv = new Ajv()
1213

1314
let message: string =

0 commit comments

Comments
 (0)