Skip to content

feat: Updated Backstage to v1.21.1 #175

feat: Updated Backstage to v1.21.1

feat: Updated Backstage to v1.21.1 #175

Workflow file for this run

name: PR
on:
pull_request:
branches: [main]
types: [opened, reopened, ready_for_review, synchronize]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: '0'
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn lint
- run: yarn tsc
- run: yarn build:all
- run: yarn prettier:check
env:
CI: true