Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ jobs:
- name: npm install, build, and test
# Note, we run bench and cov just to make sure they run successfully, but we're not doing anything with the result yet.
run: |
isInteractive=$(tty -s && echo false || echo true)
if $isInteractive; then echo 'in a tty'; else echo 'NOT in a tty'; fi
npm install
npm run build
npm run doc
Expand Down
Loading