update build from source docs #9
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: Scan for accessibility | |
| on: | |
| pull_request: | |
| branches: [latest, develop, release-*] | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| scan: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v3 | |
| - name: Setup ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: '3.3' | |
| bundler-cache: true | |
| - name: Make Html | |
| run: | | |
| rake build | |
| - name: Scan for accessibility | |
| run: | | |
| rake scan |