Skip to content

try using chrome devtools #19

try using chrome devtools

try using chrome devtools #19

Workflow file for this run

# https://practical.li/clojure/continuous-integration/github-actions/
name: Tests build
on: [push]
jobs:
clojure:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Prepare java
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '17'
- name: Install clojure tools
uses: DeLaGuardo/[email protected]
with:
cli: 1.10.1.693 # Clojure CLI based on tools.deps
#- name: Run Clj Unit tests
# run: make test-clj
- name: Install Chrome
uses: browser-actions/setup-chrome@97
- name: Run example app tests
run: cd examples/a-cljs-app && make test-cljs-shadow && cd -
- name: Run example lib tests
run: cd examples/a-cljs-library && make test-cljs-shadow && cd -