Sy 1405 fix sensor value position on schematic reload (#892) #1860
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Test - Drift" | |
on: | |
pull_request: | |
branches: | |
- rc | |
- main | |
push: | |
branches: | |
- rc | |
- main | |
workflow_dispatch: | |
jobs: | |
test: | |
name: "Run Tests" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Diff Changes | |
uses: dorny/paths-filter@v3 | |
id: filter | |
with: | |
filters: | | |
changed: | |
- "drift/**" | |
- ".github/workflows/test.drift.yaml" | |
- name: Set up pnpm | |
if: steps.filter.outputs.changed == 'true' | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 9 | |
- name: Set up Node | |
if: steps.filter.outputs.changed == 'true' | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: pnpm | |
- name: Install Dependencies | |
if: steps.filter.outputs.changed == 'true' | |
run: pnpm install --frozen-lockfile | |
- name: Build Drift | |
if: steps.filter.outputs.changed == 'true' | |
run: pnpm build:drift | |
- name: Test | |
if: steps.filter.outputs.changed == 'true' | |
run: pnpm cov:drift | |
- name: Upload Coverage | |
if: steps.filter.outputs.changed == 'true' | |
uses: codecov/codecov-action@v3 | |
with: | |
directory: ./drift | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} | |
flags: drift |