fix(deps): update dependency @backstage/ui to ^0.16.0 #400
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] | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| name: Type Check, Lint, Test & Build | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| env: | |
| CI: true | |
| NODE_OPTIONS: --max-old-space-size=4096 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v7 | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24' | |
| cache: 'yarn' | |
| - name: Cache Next.js build | |
| uses: actions/cache@v5 | |
| with: | |
| path: | | |
| .next/cache | |
| key: ${{ runner.os }}-nextjs-${{ hashFiles('yarn.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-nextjs- | |
| - name: Install dependencies | |
| run: yarn install --immutable | |
| - name: Type check | |
| run: yarn tsc --noEmit | |
| - name: Lint | |
| run: yarn lint | |
| - name: Test | |
| run: yarn test | |
| continue-on-error: true | |
| - name: Build | |
| run: yarn build |