Skip to content

Commit 695b06d

Browse files
committed
Update main.ts
1 parent 1012e92 commit 695b06d

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

src/main.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,9 @@ import { exec } from '@actions/exec';
33
import { join } from 'path';
44

55
async function run() {
6-
const project = getInput('project');
7-
const build = getInput('build');
86
const executable = getInput('executable');
97
console.log(`##[add-matcher]${join(__dirname, '..', '.github', 'tsc.json')}`);
10-
const args = [
11-
`${join(process.cwd(), 'node_modules/.bin', executable)}`,
8+
const args = [`${join(process.cwd(), 'node_modules/.bin', executable)}`]
129
try {
1310
await exec('node', args);
1411
} catch (error) {

0 commit comments

Comments
 (0)