chore(ui): Bump version #456
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 types | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| paths: | |
| - '.github/workflows/build-types.yml' | |
| # We don't need to hunt for every possible case, these should cover almost all cases | |
| - 'ui/package.json' | |
| - 'ui/build/build.types.js' | |
| - 'ui/build/build.javascript.js' | |
| # Manually authored .d.ts files | |
| - 'ui/types/**' | |
| # JSON API files | |
| - 'ui/src/**/*.json' | |
| - '!ui/src/api-file-example.json' | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| paths: | |
| - '.github/workflows/build-types.yml' | |
| # We don't need to hunt for every possible case, these should cover almost all cases | |
| - 'ui/package.json' | |
| - 'ui/build/build.types.js' | |
| - 'ui/build/build.javascript.js' | |
| # Manually authored .d.ts files | |
| - 'ui/types/**' | |
| # JSON API files | |
| - 'ui/src/**/*.json' | |
| - '!ui/src/api-file-example.json' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read # to fetch code (actions/checkout) | |
| defaults: | |
| run: | |
| working-directory: ui | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v5 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24 | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm i | |
| - name: Ensure types are formatted correctly | |
| run: pnpm lint:check | |
| - name: Build the types | |
| run: pnpm build js types | |
| - if: ${{ github.event_name == 'pull_request' }} | |
| run: | | |
| echo "${{ github.event.number }}" > dist/.pr-number | |
| - name: Upload the build artifact | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: types-build | |
| include-hidden-files: true # to include the .pr-number file | |
| path: | | |
| ui/dist/api | |
| ui/dist/types | |
| ui/dist/.pr-number | |
| # The flow continues with ./comment-build-results.yml for PRs |