[bot] synced file(s) with Wall-Brew-Co/rebroadcast #787
Workflow file for this run
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
# Executes ClojureScript tests using Leiningen / Karma | |
name: Clojurescript Tests | |
on: ["workflow_dispatch", "pull_request"] | |
jobs: | |
test: | |
# Cancel any runs in progress for the same workflow and PR | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Echo Trigger | |
id: echo-trigger | |
run: echo "Job triggered by ${{ github.event_name }}" | |
- name: Echo Runner OS | |
id: echo-runner-os | |
run: echo "Job running on ${{ runner.os }} server" | |
- name: Echo Git Ref | |
id: echo-git-ref | |
run: echo "Using ${{ github.ref }} branch from ${{ github.repository }} repository" | |
- name: Checkout Repository | |
id: checkout | |
uses: actions/[email protected] | |
- name: Setup Java | |
id: install-java | |
uses: actions/[email protected] | |
with: | |
distribution: 'adopt' | |
java-version: '21' | |
# This should match system.properties | |
- name: Install Leiningen | |
id: install-leiningen | |
uses: DeLaGuardo/[email protected] | |
with: | |
lein: 'latest' | |
clj-kondo: 'latest' | |
cljstyle: 'latest' | |
- name: Cache Maven Dependencies | |
id: cache-maven | |
uses: actions/cache@v4 | |
env: | |
cache-name: cache-maven | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-clj-${{ hashFiles('**/project.clj') }} | |
restore-keys: | | |
${{ runner.os }}-clj | |
- name: Cache npm dependencies | |
id: cache-npm | |
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 | |
id: install-clojure-deps | |
run: lein deps | |
- name: Echo Leiningen Version | |
id: lein-version | |
run: lein -v | |
- name: Install node.js Dependencies | |
id: install-node-deps | |
run: npm install | |
- name: Build Clojurescript | |
id: build-cljs | |
run: lein cljsbuild once test | |
- name: Run All Tests | |
id: run-tests | |
run: lein doo once | |
- name: Echo Status | |
id: echo-status | |
run: echo "Job status is ${{ job.status }}." | |
# This file was automatically copied and populated by rebroadcast | |
# Do not edit this file directly, instead modify the source at https://github.com/Wall-Brew-Co/rebroadcast/blob/master/sources/github-actions/workflows/clojurescript.yml |