Skip to content

chore(flow-functionality): add @stable to flow-rename-header #255

chore(flow-functionality): add @stable to flow-rename-header

chore(flow-functionality): add @stable to flow-rename-header #255

Workflow file for this run

name: PR Validation
on:
pull_request:
branches: [main]
jobs:
typecheck:
name: TypeScript Check
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: TypeScript check
run: npm run typecheck
lint:
name: ESLint
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint:ci