Skip to content

Sync UserAdminModule docs with source functions #42

Sync UserAdminModule docs with source functions

Sync UserAdminModule docs with source functions #42

Workflow file for this run

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