Merge pull request #86 from nnichols/dependencies/actions-checkout-4.x #143
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Clojure and ClojureScript CI | |
on: ["push", "workflow_dispatch"] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/[email protected] | |
- name: Cache maven dependencies | |
uses: actions/cache@v4 | |
env: | |
cache-name: cache-maven | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/project.clj') }} | |
restore-keys: | | |
${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/project.clj') }} | |
- name: Cache npm dependencies | |
uses: actions/cache@v4 | |
env: | |
cache-name: cache-npm | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Install Clojure/ClojureScript dependencies | |
run: lein deps | |
- name: Install node.js dependencies | |
run: npm install | |
- name: Run tests | |
run: lein test-build |