Skip to content

dependabot[bot] is running the CI pipeline #1840

dependabot[bot] is running the CI pipeline

dependabot[bot] is running the CI pipeline #1840

Workflow file for this run

name: Lint/Typecheck/Test
run-name: ${{ github.actor }} is running the CI pipeline
on: [push]
jobs:
Backstage-CI-Pipeline:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: 'true'
- name: Use Node.js 18
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: yarn install
- name: Run linter
run: yarn lint
- name: Run type checker
run: yarn tsc
- name: Run tests
run: yarn test