Skip to content

Remove this-as, prepare for portal viewer #109

Remove this-as, prepare for portal viewer

Remove this-as, prepare for portal viewer #109

Workflow file for this run

name: Linter
on:
pull_request:
push:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Babashka
uses: DeLaGuardo/setup-clojure@10.2
with:
bb: latest
- name: Cache kondo directory
uses: actions/cache@v2
with:
path: ~/.clj-kondo/.cache
key: ${{ runner.os }}-kondo
restore-keys: ${{ runner.os }}-kondo
- name: Lint dependencies
run: bb lint-deps
- name: Lint project files
run: bb lint --config '{:output {:pattern "::{{level}} file={{filename}},line={{row}},col={{col}}::{{message}}"}}'