Skip to content

web: remove unneeded chart types #239

web: remove unneeded chart types

web: remove unneeded chart types #239

Workflow file for this run

name: Test (Web)
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
strategy:
matrix:
target:
- prettier-check
- lint-check
- lit-analyse
- tsc
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version-file: web/package.json
cache: "npm"
cache-dependency-path: web/package-lock.json
- run: make web-install gen-client-ts
- run: npm run ${{ matrix.target }}
working-directory: web/
web-test-mark:
if: always()
needs:
- lint
runs-on: ubuntu-latest
steps:
- uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}