File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 29
29
java-version : ' 11'
30
30
31
31
- name : Install Python
32
- uses : actions/setup-python@v1
32
+ uses : actions/setup-python@v4
33
33
34
34
- name : Install NativeScript
35
35
run : |
53
53
54
54
- name : Start iOS Simulator
55
55
if : ${{ always() && !cancelled() }} # run iOS tests even if Android tests failed
56
- uses : futureware-tech/simulator-action@v1
56
+ uses : futureware-tech/simulator-action@v2
57
57
with :
58
58
model : ' iPhone 13 Pro Max'
59
59
os_version : ' >=15.0'
Original file line number Diff line number Diff line change 1
1
legacy-peer-deps = true
2
+
3
+ # npm 9+ this defaults to `true` meaning `file:` dependencies are packed and then installed
4
+ # but since we want to link the source files in this case, we disable this behavior and
5
+ # opt to link the dependency as-is instead. (eg. @nativescript/core)
6
+ install-links = false
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ const spawned_process = spawn(
18
18
"run" ,
19
19
`apps-automated:${ platform } ` ,
20
20
// "--log=trace",
21
+ // `--flags="--log=trace"`,
21
22
"--timeout=600" // 10 minutes, booting avds on CI is very slow...
22
23
] ,
23
24
{
You can’t perform that action at this time.
0 commit comments