Skip to content

Commit

Permalink
chore: add debugging output to CICD
Browse files Browse the repository at this point in the history
  • Loading branch information
shah committed Oct 20, 2023
1 parent 17a2758 commit 92c60ae
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/assurance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ jobs:

- run: deno task doctor

- run: |
echo "PRAGMA compile_options;" | sqlite3
echo "PRAGMA compile_options;" | sqlite3 | grep -q 'ENABLE_JSON1' && echo 'JSON1 extension is enabled' || echo 'JSON1 extension is NOT enabled'
echo "SELECT json('{\"foo\":\"bar\"}');" | sqlite3 || (echo 'JSON functions are NOT supported' && false)
# syntax check all files in case tests don't exist
- run: deno check --no-lock --unstable $(find . -name '*.ts' -not -path './support/*')

Expand Down

0 comments on commit 92c60ae

Please sign in to comment.