Skip to content

fix(deps): update dependency @backstage/ui to ^0.16.0 #400

fix(deps): update dependency @backstage/ui to ^0.16.0

fix(deps): update dependency @backstage/ui to ^0.16.0 #400

Workflow file for this run

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