Add PHPUnit problem matcher

This commit is contained in:
Dec Norton
2019-11-24 16:35:21 +00:00
parent 1db0b0651d
commit 03f36220f4
4 changed files with 69 additions and 0 deletions

View File

@ -4,6 +4,7 @@ import * as config from './config';
import * as coverage from './coverage';
import * as extensions from './extensions';
import * as utils from './utils';
import {addMatchers} from './matchers';
/**
* Build the script
@ -63,6 +64,8 @@ export async function run(): Promise<void> {
);
break;
}
addMatchers();
} catch (error) {
core.setFailed(error.message);
}