File tree 3 files changed +10
-4
lines changed
3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -21,12 +21,12 @@ jobs:
21
21
22
22
- uses : actions/setup-node@v3
23
23
with :
24
- node-version : 18
24
+ node-version : 20.10.0
25
25
26
26
- uses : actions/setup-java@v3
27
27
with :
28
28
distribution : ' temurin'
29
- java-version : ' 11 '
29
+ java-version : ' 17 '
30
30
31
31
- name : Install Python
32
32
uses : actions/setup-python@v4
49
49
50
50
- name : Create Emulator
51
51
uses : rigor789/action-create-emulator@main
52
+ with :
53
+ package : system-images;android-34;default;x86_64
52
54
53
55
- name : Test (Android)
54
56
run : node tools/scripts/run-automated.js android
Original file line number Diff line number Diff line change @@ -2,7 +2,11 @@ import { Trace } from '../../trace';
2
2
import { CoreTypes } from '../../core-types' ;
3
3
import { Length } from './style-properties' ;
4
4
5
- export function cleanupImportantFlags ( value : string , propertyName : string ) {
5
+ export function cleanupImportantFlags ( value : unknown , propertyName : string ) {
6
+ if ( typeof value !== 'string' ) {
7
+ return '' + value ;
8
+ }
9
+
6
10
const index = value ?. indexOf ( '!important' ) ;
7
11
if ( index >= 0 ) {
8
12
if ( Trace . isEnabled ( ) ) {
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ const spawn = require('child_process').spawn
8
8
const kill = require ( 'tree-kill' ) ;
9
9
const path = require ( 'path' ) ;
10
10
11
- const TIMEOUT_MS = 5 * 60 * 1000 ; // 5 minutes
11
+ const TIMEOUT_MS = 20 * 60 * 1000 ; // 20 minutes (is Github CI this slow to boot AVDs?)
12
12
const workspaceDir = path . resolve ( __dirname , '../..' ) ;
13
13
const platform = process . argv [ 2 ] ;
14
14
const spawned_process = spawn (
You can’t perform that action at this time.
0 commit comments