rjsf and bootstrap major upgrades #2544
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
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| name: CI | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: 'package.json' | |
| cache: 'npm' | |
| - name: Print environment | |
| run: | | |
| node --version | |
| npm --version | |
| - name: Install Node dependencies | |
| run: npm ci | |
| - name: Code Style, Lint, Type Check | |
| run: npm run lint | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: 'package.json' | |
| cache: 'npm' | |
| - name: Print environment | |
| run: | | |
| node --version | |
| npm --version | |
| - name: Install Node dependencies | |
| run: npm ci | |
| - name: Run tests | |
| run: npm run test:ci | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: 'package.json' | |
| cache: 'npm' | |
| - name: Print environment | |
| run: | | |
| node --version | |
| npm --version | |
| - name: Install Node dependencies | |
| run: npm ci | |
| - name: Build | |
| run: | | |
| npm run build | |
| review-dependabot-pr: | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| runs-on: ubuntu-latest | |
| if: ${{ github.actor == 'dependabot[bot]' }} | |
| steps: | |
| - name: Enable Dependabot automation | |
| uses: mozilla/syseng-pod/actions/dependabot-automerge@main |