Fix navbar test #84
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: Test and Build | |
on: | |
push: | |
branches-ignore: | |
- master | |
permissions: write-all | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
- name: Install clojure tools | |
uses: DeLaGuardo/setup-clojure@12.1 | |
with: | |
cli: latest | |
- name: Verify code base format | |
run: clojure -T:cljfmt check | |
- name: Run the clj tests | |
run: clojure -A:server/test | |
- name: Run the cljs tests | |
run: clojure -A:web/test-headless | |
- name: Build main.js | |
run: clojure -T:build js-bundle | |
- uses: EndBug/add-and-commit@v9 | |
with: | |
add: "resources/public/main.js" | |
committer_name: GitHub Action | |
default_author: github_actions | |
message: "Compiled the cljs to the js bundle: main.js" |