-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[bot] synced local '.github/workflows/clojurescript.yml' with remote …
…'sources/github-actions/workflows/clojurescript.yml' Sourced from: https://github.com/Wall-Brew-Co/rebroadcast
- Loading branch information
1 parent
4d60076
commit b222935
Showing
1 changed file
with
20 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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] | ||
|
@@ -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 | ||
|
@@ -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 |