Skip to content

fix: use color_temp_kelvin in light dev-types (HA removed kelvin) (#252) #563

fix: use color_temp_kelvin in light dev-types (HA removed kelvin) (#252)

fix: use color_temp_kelvin in light dev-types (HA removed kelvin) (#252) #563

Workflow file for this run

name: Pull Request Checks
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
workflow_call:
secrets:
CODECOV_TOKEN:
required: true
pull_request:
branches:
- main
push:
branches:
- main
jobs:
lint-and-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v4
with:
node-version: '22'
- run: corepack enable
- run: yarn config set enableImmutableInstalls false
- run: yarn
- run: yarn lint
- run: yarn build
- run: yarn test:coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5.4.3
with:
token: ${{ secrets.CODECOV_TOKEN }}