Skip to content

Bump @protobufjs/utf8 from 1.1.0 to 1.1.1 in /app/web_ui #10602

Bump @protobufjs/utf8 from 1.1.0 to 1.1.1 in /app/web_ui

Bump @protobufjs/utf8 from 1.1.0 to 1.1.1 in /app/web_ui #10602

name: Web UI Checks
on: [push, pull_request]
jobs:
webui_checks:
name: Web UI Code Format, Lint, Typecheck, Test, and Build
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./app/web_ui
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: "app/web_ui/.nvmrc"
cache: "npm"
cache-dependency-path: "app/web_ui/package-lock.json"
- name: NPM install
run: npm install .
- name: Check Code Format
run: npm run format_check
- name: Linting
run: npm run lint
- name: Typechecking
run: npm run check
- name: Tests
run: npm run test_run
- name: SvelteKit Build
run: npm run build