Skip to content

feat: add humanize-entity-ref-to-presentation codemod for Backstage 1.50.0 #50

feat: add humanize-entity-ref-to-presentation codemod for Backstage 1.50.0

feat: add humanize-entity-ref-to-presentation codemod for Backstage 1.50.0 #50

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
# Must run before any `yarn` (including setup-node's cache helper). Yarn 4
# comes from package.json "packageManager" via Corepack.
- name: Enable Corepack
run: corepack enable
- name: Get Yarn cache path
id: yarn-cache
run: echo "dir=$(yarn config get cacheFolder)" >> "$GITHUB_OUTPUT"
- uses: actions/cache@v4
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: yarn-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
restore-keys: |
yarn-${{ runner.os }}-
- run: yarn install --immutable
- run: yarn check-types
- run: yarn test