Fix ajax imports. #34
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
name: Tests | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install dependencies | |
run: | | |
lein deps | |
npm install | |
- name: Run ClojureScript tests | |
run: | | |
lein build-test | |
npx karma start --single-run | |
# - name: Run Clojure tests | |
# run: | | |
# lein test |