Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
djblue committed Dec 22, 2024
1 parent 326cc31 commit 8a9574b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/clojure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: ./.github/setup
- uses: browser-actions/setup-chrome@v1
- run: rm package.json
- run: npm install "react@^17.0.2"
- uses: actions/download-artifact@v4
Expand All @@ -57,6 +58,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: ./.github/setup
- uses: browser-actions/setup-chrome@v1
- run: rm package.json
- run: npm install "react@^17.0.2"
- uses: actions/download-artifact@v4
Expand All @@ -68,13 +70,12 @@ jobs:
needs: [ setup, build ]
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: ./.github/setup
- if: matrix.os == 'windows-latest'
uses: browser-actions/setup-chrome@v1
- uses: browser-actions/setup-chrome@v1
- run: rm package.json
- run: npm install "react@^17.0.2"
- uses: actions/download-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion test/portal/runtime/api_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[portal.runtime.browser :as browser]))

(defn- headless-chrome-flags [url]
["--headless=new" "--disable-gpu" "--no-sandbox" url])
["--headless=new" "--disable-gpu" #_"--no-sandbox" url])

(defn- open []
(p/open {:mode :test
Expand Down

0 comments on commit 8a9574b

Please sign in to comment.