Try a fix for cljs.analyzer dependency not working #70
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: Clojure CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
cache: 'npm' | |
- name: Install dependencies | |
run: lein deps && npm install | |
- name: run clj tests | |
run: lein test | |
- name: run cljs tests | |
run: npm run test | |
# - name: coverage | |
# run: lein cloverage --codecov | |
# - name: Upload coverage to Codecov | |
# uses: codecov/codecov-action@v1 | |
# with: | |
# token: ${{ secrets.CODECOV_TOKEN }} | |