Skip to content

Bump packages to 0.20.0 #19

Bump packages to 0.20.0

Bump packages to 0.20.0 #19

Workflow file for this run

name: CI Build
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'yarn'
- run: yarn --version
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn workspaces run lint
- name: Run TypeScript Compiler
run: yarn workspaces run tsc
- name: Build
run: yarn workspaces run build
- name: Test
# TODO(rm3l): enable once we have proper tests. This currently fails with the error below:
# Cannot find module 'react' from '../../../node_modules/@backstage/version-bridge/dist/index.esm.js'
if: false
run: yarn workspaces run test --ci