Bump packages to 0.20.0 #19
This file contains 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 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 |