Sync UserAdminModule docs with source functions #42
Workflow file for this run
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: | |
| branches: [prod] | |
| pull_request: | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: '3.1' | |
| bundler-cache: true | |
| - name: Environment info | |
| run: | | |
| echo "Running on $(uname -a)" | |
| echo "Repo: $GITHUB_REPOSITORY" | |
| echo "Branch/Ref: $GITHUB_REF" | |
| - name: Build site | |
| run: bundle exec jekyll build --trace | |
| - name: HTML Proofer | |
| env: | |
| FULL_BASE: https://scripts.lukeleigh.com | |
| run: | | |
| bundle exec htmlproofer \ | |
| --swap-urls "^/\:${FULL_BASE}/" \ | |
| ./_site |