File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed
Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change 5151 - run : deno test --import-map=import_map.json test
5252 env :
5353 DENO_NO_PACKAGE_JSON : 1
54+
55+ run-tests-ubuntu :
56+ runs-on : ubuntu-latest
57+ steps :
58+ - uses : actions/checkout@v3
59+ - uses : actions/setup-node@v3
60+ with :
61+ node-version : ' 18'
62+ - uses : actions/setup-java@v3
63+ with :
64+ distribution : ' dragonwell'
65+ java-version : ' 11'
66+ - uses : denoland/setup-deno@v1
67+ with :
68+ deno-version : ' ~1.36'
69+ - run : npm ci
70+ - run : npm run lint
71+ - run : npm test
72+ - run : deno test --import-map=import_map.json test
73+ env :
74+ DENO_NO_PACKAGE_JSON : 1
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ const edgeOptions = new EdgeOptions();
4848edgeOptions . addArguments ( '--headless=new' ) ;
4949
5050const firefoxOptions = new FirefoxOptions ( ) ;
51+ firefoxOptions . addArguments ( '--headless' ) ;
5152
5253const safariOptions = new SafariOptions ( ) ;
5354
You can’t perform that action at this time.
0 commit comments