Skip to content

Commit c25ca34

Browse files
committed
Change test workflow trigger
1 parent 42fa53d commit c25ca34

File tree

4 files changed

+4
-15
lines changed

4 files changed

+4
-15
lines changed

.eslintrc.json

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: test
22
on:
33
push:
44
branches:
5-
- "master"
5+
- "**"
66
paths-ignore:
77
- "**.md"
88
jobs:
@@ -40,7 +40,7 @@ jobs:
4040
- name: Setup unity
4141
id: setup-unity
4242
uses: ./
43-
timeout-minutes: 30
43+
timeout-minutes: 60
4444
with:
4545
unity-version: ${{ matrix.unity-version }}
4646
unity-modules: ${{ matrix.unity-module }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# setup-unity
22

33
<p align="left">
4-
<a href="https://github.com/kuler90/setup-unity/actions"><img alt="GitHub Actions status" src="https://github.com/kuler90/setup-unity/workflows/test/badge.svg"></a>
4+
<a href="https://github.com/kuler90/setup-unity/actions"><img alt="GitHub Actions status" src="https://github.com/kuler90/setup-unity/workflows/test/badge.svg?branch=master"></a>
55
</p>
66

77
GitHub Action to download and install Unity. Based on Unity Hub.

src/setup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ async function findVersionChangeset(unityVersion) {
164164

165165
async function executeHub(unityHubPath, args) {
166166
if (process.platform === 'linux') {
167-
return await execute(`xvfb-run --auto-servernum "${unityHubPath}" --no-sandbox --headless ${args}`);
167+
return await execute(`xvfb-run --auto-servernum "${unityHubPath}" --headless ${args}`);
168168
} else if (process.platform === 'darwin') {
169169
return await execute(`"${unityHubPath}" -- --headless ${args}`);
170170
} else if (process.platform === 'win32') {

0 commit comments

Comments
 (0)