Skip to content

[Actions] Install clojure and kondo #509

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/clojure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ jobs:
with:
# The Java version to make available on the path. Takes a whole or semver Java version, or 1.x syntax (e.g. 1.8 => Java 8.x). Early access versions can be specified in the form of e.g. 14-ea, 14.0.0-ea, or 14.0.0-ea.28
java-version: 1.8
- name: Setup Clojure
uses: DeLaGuardo/[email protected]
with:
lein: 2.9.1
clj-kondo: 2023.04.14
- name: Setup Node.js environment
uses: actions/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion src/test/js/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if (process.argv.length !== 3) {
}

(async () => {
const browser = await puppeteer.launch({ headless: true }); // Launch headless Chrome
const browser = await puppeteer.launch({ headless: true, args: ['--no-sandbox', '--disable-setuid-sandbox']}); // Launch headless Chrome
const page = await browser.newPage(); // Create a new page

// test html file
Expand Down