Skip to content

fix(cloud-nav): keep collapsed nav header height stable (3606) by @bilal-karim (Attempt 1) #7383

fix(cloud-nav): keep collapsed nav header height stable (3606) by @bilal-karim (Attempt 1)

fix(cloud-nav): keep collapsed nav header height stable (3606) by @bilal-karim (Attempt 1) #7383

Workflow file for this run

name: Run Tests, Lint, and Check Types
run-name: ${{github.event.pull_request.title}} (${{ github.event.pull_request.number }}) by @${{ github.triggering_actor }} (Attempt ${{ github.run_attempt }})
on:
push:
branches: [main]
pull_request:
branches: [main, 'codefreeze-*']
paths-ignore:
- '**.md'
- 'LICENSE'
- 'CODEOWNERS'
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Checkout and Setup Node
uses: ./.github/actions/setup-node
- name: Lint
run: pnpm run --if-present lint:ci
check-types:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Checkout and Setup Node
uses: ./.github/actions/setup-node
- name: Check Types
run: pnpm run check
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Checkout and Setup Node
uses: ./.github/actions/setup-node
- name: Run Unit Tests
run: pnpm test