Skip to content

Gradient spans the entire html component instead of body #78

Gradient spans the entire html component instead of body

Gradient spans the entire html component instead of body #78

Workflow file for this run

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"