Skip to content

fix component props from attrs not respecting provided transient props #100

fix component props from attrs not respecting provided transient props

fix component props from attrs not respecting provided transient props #100

Workflow file for this run

name: Quality
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
format:
name: Format
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install
uses: ./.github/composite-actions/install
- name: Run Prettier
run: pnpm run check-format
tests:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install
uses: ./.github/composite-actions/install
- name: Run tests
run: pnpm test -- run
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install
uses: ./.github/composite-actions/install
- name: Run ESLint
run: pnpm run lint
types:
name: TypeScript
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install
uses: ./.github/composite-actions/install
- name: Run TypeScript type check
run: pnpm run check-types