1
0
Fork 0
mirror of https://github.com/heyarne/airsonic-ui.git synced 2026-05-06 10:23:39 +02:00
airsonic-ui/.circleci/config.yml
2019-03-12 15:16:43 +01:00

25 lines
634 B
YAML

version: 2
jobs:
test:
working_directory: ~/repo
docker:
- image: circleci/openjdk:11-jdk-stretch-node-browsers
environment:
- CHROME_BIN: "/usr/bin/google-chrome"
steps:
- checkout
- restore_cache:
keys:
- build_cache-{{ checksum "package.json" }}-{{ checksum "shadow-cljs.edn" }}
- run: npm install
- run: npm run test
- save_cache:
paths:
- node_modules
- ~/.m2
key: build_cache-{{ checksum "package.json" }}-{{ checksum "shadow-cljs.edn" }}
workflows:
version: 2
test:
jobs:
- test