fix: text colors, prose styling, and cleaner header design #20
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: Checks | |
| on: | |
| pull_request: | |
| jobs: | |
| proof: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| - name: Install Node dependencies | |
| run: npm ci | |
| - name: Build Tailwind CSS | |
| run: npm run build:css | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| bundler-cache: true | |
| - name: Build Jekyll site | |
| run: bundle exec jekyll build | |
| - name: Run HTMLProofer | |
| run: bundle exec htmlproofer --allow-hash-href --ignore-urls "hachyderm.io,play.google.com,f-droid.org" ./_site |