Refactor Action Menu Button Example Using aria-activedescendant Test Plan to V2 Test Format #1293
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: Generate and Commit Files | |
on: | |
pull_request: | |
jobs: | |
generate-and-commit-files: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: refs/pull/${{ github.event.pull_request.number }}/head | |
fetch-depth: 0 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16.x' | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
- name: Generate test and review files | |
run: npm run build | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
with: | |
commit_message: Generate .html source files with scripts automatically | |
generate-files-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: refs/pull/${{ github.event.pull_request.number }}/head | |
fetch-depth: 0 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16.x' | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
- name: Generate test and review files | |
run: npm run build |