-
Notifications
You must be signed in to change notification settings - Fork 2
42 lines (38 loc) · 1.04 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Clojure/Clojurescript Build
on:
push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Checkout metafacture-core
uses: actions/checkout@v2
with:
path: metafacture-core
repository: metafacture/metafacture-core
ref: 5.7.0-rc1
- name: Install metafacture-core
working-directory: metafacture-core
run: ./gradlew install
- name: Checkout metafacture-fix
uses: actions/checkout@v2
with:
path: metafacture-fix
repository: metafacture/metafacture-fix
ref: 0.6.0-rc3
- name: Install metafacture-fix
working-directory: metafacture-fix
run: ./gradlew install
- name: Set up Node.js
uses: actions/setup-node@v2
- uses: actions/checkout@v2
- name: Install dependencies
run: lein deps
- name: Build cljs
run: lein release
- name: Build clj
run: lein uberjar