We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1012e92 commit 695b06dCopy full SHA for 695b06d
1 file changed
src/main.ts
@@ -3,12 +3,9 @@ import { exec } from '@actions/exec';
3
import { join } from 'path';
4
5
async function run() {
6
- const project = getInput('project');
7
- const build = getInput('build');
8
const executable = getInput('executable');
9
console.log(`##[add-matcher]${join(__dirname, '..', '.github', 'tsc.json')}`);
10
- const args = [
11
- `${join(process.cwd(), 'node_modules/.bin', executable)}`,
+ const args = [`${join(process.cwd(), 'node_modules/.bin', executable)}`]
12
try {
13
await exec('node', args);
14
} catch (error) {
0 commit comments