Add CI job for invalid dicts

And tweak fn so that it actually fails
This commit is contained in:
Gabriel Horner
2022-01-27 17:40:11 -05:00
parent 8998e9435b
commit 02c0489a26
3 changed files with 38 additions and 15 deletions

View File

@@ -17,6 +17,7 @@ env:
JAVA_VERSION: '8'
# This is the latest node version we can run.
NODE_VERSION: '16'
BABASHKA_VERSION: '0.7.3'
jobs:
@@ -75,6 +76,22 @@ jobs:
yarn cljs:test
node static/tests.js
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Babashka
uses: turtlequeue/setup-babashka@v1.3.0
with:
babashka-version: ${{ env.BABASHKA_VERSION }}
- name: Lint invalid dictionary keys
run: bb lang:invalid-dicts
e2e-test:
runs-on: ubuntu-latest