Skip to content

Improve test coverage for uncovered UI formatting and Bloch scene branches #18

Improve test coverage for uncovered UI formatting and Bloch scene branches

Improve test coverage for uncovered UI formatting and Bloch scene branches #18

Workflow file for this run

name: tests
on:
push:
branches:
- main
pull_request:
branches:
- main
release:
types:
- published
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: "22"
- name: Install
run: |
make install
- name: Build
run: |
make build
- name: Lint
run: |
make lint
- name: Tests
run: |
make test
- name: Codecov
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}