-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yml
More file actions
25 lines (25 loc) · 780 Bytes
/
Copy pathconfig.yml
File metadata and controls
25 lines (25 loc) · 780 Bytes
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
version: 2
jobs:
build:
docker:
- image: circleci/clojure:tools-deps-1.11.1.1113-bullseye-node
working_directory: ~/mate
steps:
- checkout:
path: ~/mate
- restore_cache:
keys:
- 'clj-v1-{{ checksum "deps.edn" }}-{{ checksum "package-lock.json" }}'
- 'clj-v1'
- run: npm ci
- run: mkdir -p test-results
- run: bin/kaocha --plugin kaocha.plugin/junit-xml --junit-xml-file test-results/kaocha/results.xml
- store_test_results:
path: test-results
- save_cache:
key: 'clj-v1-{{checksum "deps.edn"}}-{{ checksum "package-lock.json" }}'
paths:
- ~/.m2
- ~/.cljs/.aot_cache
- ~/node_modules
- ~/.gitlibs