expand matrix for clojure tests #2
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: CLJS Tests | |
on: [push] | |
jobs: | |
# Runtime Tests | |
runtime-test: | |
name: Runtime Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3.1.0 | |
- uses: DeLaGuardo/setup-clojure@9.5 | |
with: | |
tools-deps: '1.11.1.1182' | |
- name: Build tests | |
run: clojure -M:cljs-test:adv | |
- name: Run tests | |
run: | | |
node out-adv-node/tests.js | tee test-out.txt | |
grep -qxF '0 failures, 0 errors.' test-out.txt |