Skip to content

Commit

Permalink
[bot] synced local '.github/workflows/clojurescript.yml' with remote …
Browse files Browse the repository at this point in the history
…'sources/github-actions/workflows/clojurescript.yml'

Sourced from: https://github.com/Wall-Brew-Co/rebroadcast
  • Loading branch information
WallBrewBot committed Jan 5, 2025
1 parent 4d60076 commit b222935
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions .github/workflows/clojurescript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,18 @@ jobs:
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]
Expand Down Expand Up @@ -56,14 +68,14 @@ jobs:
restore-keys: |
${{ runner.os }}-node
- name: Echo Leiningen Version
id: lein-version
run: lein -v

- 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
Expand All @@ -76,5 +88,9 @@ jobs:
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

0 comments on commit b222935

Please sign in to comment.