DENG-2407 Update Mozilla Accounts docs #1067
Workflow file for this run
This file contains 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: Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: mdbook | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- name: Install mdbook-dtmo | |
run: | | |
scripts/crate.sh --repo badboy/mdbook-dtmo --to ~/.cargo/bin | |
mdbook-dtmo --version | |
- name: Build book | |
run: | | |
mdbook-dtmo build . | |
get-changed-md-files: | |
name: get-changed-md-files | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
with: | |
fetch-depth: 2 | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/changed-files@v41 | |
with: | |
files: | | |
README.md | |
src/**/*.md | |
outputs: | |
changed_files: ${{ steps.changed-files.outputs.all_changed_files }} | |
spell-check: | |
needs: get-changed-md-files | |
name: spell-check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- name: Spell check | |
run: | | |
npm install | |
scripts/spell_check.sh ${{ needs.get-changed-md-files.outputs.changed_files }} | |
link-check: | |
needs: get-changed-md-files | |
name: link-check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- name: Link check | |
run: | | |
npm install | |
scripts/link_check.sh ${{ needs.get-changed-md-files.outputs.changed_files }} | |
prettier-check: | |
needs: get-changed-md-files | |
name: prettier-check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- name: Prettier check | |
run: | | |
npm install | |
scripts/prettier_fix.sh ${{ needs.get-changed-md-files.outputs.changed_files }} | |
git --no-pager diff --color --exit-code src/ README.md |