Sync repo from v93 to v93 20260109081615 #346
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 Angular workspace | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master, v93 ] | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| # Currently only can run ubuntu on github agents, windows isn't correctly installing packages | |
| os: [windows-latest] | |
| node-version: [20.x] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install packages | |
| working-directory: ./imxweb | |
| run: npm install --skip-dialog | |
| - name: Build All | |
| working-directory: ./imxweb | |
| run: npm run nx:build-all | |
| timeout-minutes: 25 | |
| - name: Test All | |
| working-directory: ./imxweb | |
| run: npm run nx:test-ci | |
| timeout-minutes: 25 |