feat(Build): modernize build and test tooling with Vite/Vitest & oxlint/oxfmt #4921
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: Build and Test | |
| on: | |
| pull_request: | |
| merge_group: | |
| jobs: | |
| build-test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-24.04] | |
| node: [22] | |
| name: ${{ matrix.os }} and node ${{ matrix.node }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Install Playwright browsers | |
| run: npx playwright install --with-deps chromium firefox | |
| - name: Build | |
| run: npm run build:release | |
| - name: Archive build output | |
| if: github.event_name != 'merge_group' | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: build-results-${{ matrix.os }}-node_${{ matrix.node }} | |
| path: dist | |
| retention-days: 15 | |
| - name: Validate generated typescript definitions | |
| run: | | |
| npx tsc -p tsconfig.esm-check.json | |
| - name: Chrome and Firefox tests | |
| run: xvfb-run --auto-servernum npm run test:reporter | |
| - name: Archive test results | |
| if: github.event_name != 'merge_group' && (success() || failure()) | |
| uses: actions/upload-artifact@v4 | |
| continue-on-error: true | |
| with: | |
| name: test-results-${{ matrix.os }}-node_${{ matrix.node }} | |
| path: Utilities/TestResults/ | |
| retention-days: 15 |