-
-
Notifications
You must be signed in to change notification settings - Fork 45
64 lines (53 loc) · 1.32 KB
/
ci.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: Tests
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: "Checkout code"
uses: "actions/checkout@v2"
with:
submodules: true
- name: Prepare java
uses: actions/setup-java@v2
with:
distribution: "adopt"
java-version: 11
- name: "Restore Cache"
uses: "actions/cache@v1"
with:
path: "~/.m2/repository"
key: "${{ runner.os }}-deps-${{ hashFiles('deps.edn') }}"
restore-keys: "${{ runner.os }}-deps-"
- name: Setup Clojure
uses: DeLaGuardo/setup-clojure@12.5
with:
cli: 1.10.3.1040
bb: latest
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20
- name: npx on Windows
if: matrix.os == 'windows-latest'
shell: bash
run: |
where npx
bb -e '(babashka.process/shell "npx")'
bb -e '(babashka.process/shell "npx -v")'
- name: Run tests
shell: bash
run: |
npx -v
npm install
bb test:node
bb test:bb
bb test:clj
- name: Run library tests
if: matrix.os != 'windows-latest'
run: |
npm install --global yarn
bb test:libs