File tree Expand file tree Collapse file tree 2 files changed +14
-8
lines changed
Expand file tree Collapse file tree 2 files changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -2,11 +2,17 @@ const process = require("process");
22const core = require ( "@actions/core" ) ;
33const exec = require ( "@actions/exec" ) ;
44
5- try {
6- await exec . exec ( `"/Library/Application Support/VMware Tools/vmware-resolutionSet" 1440 900` ) ;
7- process . argv . push ( "--ci" ) ;
8- require ( "@guidepup/setup" ) ;
9- } catch ( err ) {
10- core . setFailed ( err ) ;
11- process . exit ( ) ;
5+ async function main ( ) {
6+ try {
7+ await exec . exec (
8+ `"/Library/Application Support/VMware Tools/vmware-resolutionSet" 1440 900`
9+ ) ;
10+ process . argv . push ( "--ci" ) ;
11+ require ( "@guidepup/setup" ) ;
12+ } catch ( err ) {
13+ core . setFailed ( err ) ;
14+ process . exit ( ) ;
15+ }
1216}
17+
18+ main ( ) ;
Original file line number Diff line number Diff line change 11{
22 "name" : " @guidepup/setup-action" ,
3- "version" : " 0.3.3 " ,
3+ "version" : " 0.3.4 " ,
44 "description" : " GitHub Action to setup your environment for screen-reader automation." ,
55 "main" : " index.js" ,
66 "author" : " Craig Morten <craig.morten@hotmail.co.uk>" ,
You can’t perform that action at this time.
0 commit comments