Include type changes for additionalSettings #1401
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: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: refs/pull/${{ github.event.pull_request.number }}/head | |
fetch-depth: 0 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.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@v5 | |
if: ${{ matrix.os == 'ubuntu-latest' && github.actor != 'dependabot[bot]' }} | |
with: | |
commit_message: Generate .html source files with scripts automatically |