Skip to content

Commit

Permalink
Merge pull request #7912 from NoahTheDuke/nb/fix-github-actions
Browse files Browse the repository at this point in the history
fix github actions
  • Loading branch information
NoahTheDuke authored Jan 7, 2025
2 parents 3dde482 + 154b085 commit f875820
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,17 @@ jobs:
with:
node-version: '18'

- name: Prepare java
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '17'

- name: Install clojure tools
uses: DeLaGuardo/[email protected]
with:
lein: 2.9.1

- name: Get npm cache directory
id: npm-cache-dir
shell: bash
Expand All @@ -67,8 +78,8 @@ jobs:
path: |
~/.m2
~/.lein
key: ${{ runner.os }}-clojure-${{ hashFiles('**/project.clj') }}
restore-keys: ${{ runner.os }}-clojure
key: ${{ runner.os }}-node-clojure-${{ hashFiles('**/project.clj') }}
restore-keys: ${{ runner.os }}-node-clojure

- name: Install npm dependencies
run: npm ci
Expand All @@ -82,6 +93,17 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Prepare java
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '17'

- name: Install clojure tools
uses: DeLaGuardo/[email protected]
with:
lein: 2.9.1

- name: Cache lein project dependencies
id: clj-cache
uses: actions/cache@v3
Expand Down

0 comments on commit f875820

Please sign in to comment.