Merge pull request #312 from mocayo/docs/rush-lib #81
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: CI | |
| on: | |
| pull_request: | |
| branches: ['*'] | |
| push: | |
| branches: [main] | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| env: | |
| FORCE_COLOR: 1 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 2 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24.x | |
| - name: Verify Change Logs | |
| run: node common/scripts/install-run-rush.js change --verify | |
| - name: Rush Install | |
| run: node common/scripts/install-run-rush.js install | |
| - name: Rush Build | |
| run: node common/scripts/install-run-rush.js build --verbose | |
| env: | |
| BROWSERSLIST_IGNORE_OLD_DATA: 1 |