Skip to content

Commit c988ce9

Browse files
authored
Fix ci (#251)
1 parent 058f77f commit c988ce9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/clojure.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
path: resources/portal
6767
- uses: actions/setup-dotnet@v4
6868
with:
69-
dotnet-version: '8.0.x'
69+
dotnet-version: '6.x'
7070
- run: dotnet tool install --global Clojure.Main
7171
- run: dotnet restore
7272
- run: bb -m tasks.test/cljr

test/portal/runtime/api_test.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[portal.runtime.browser :as browser]))
55

66
(defn- headless-chrome-flags [url]
7-
["--headless=new" "--disable-gpu" url])
7+
["--headless=new" "--disable-gpu" "--no-sandbox" url])
88

99
(defn- open []
1010
(p/open {:mode :test

test/portal/runtime/api_test.cljs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[portal.runtime.browser :as browser]))
66

77
(defn- headless-chrome-flags [url]
8-
["--headless=new" "--disable-gpu" url])
8+
["--headless=new" "--disable-gpu" "--no-sandbox" url])
99

1010
(defn- open []
1111
(p/open {:mode :test

0 commit comments

Comments
 (0)