feat: add memory/JOURNAL.md for ensign duty log #8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: [push, pull_request] | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Validate HTML | |
| run: | | |
| sudo apt-get update -qq && sudo apt-get install -y -qq tidy | |
| for f in *.html; do tidy -q -e "$f" || true; done |