Skip to content

feat: add dedicated tablet presentation layer #74

feat: add dedicated tablet presentation layer

feat: add dedicated tablet presentation layer #74

Workflow file for this run

name: CI Tests & Build
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
workflow_dispatch:
permissions:
contents: read
jobs:
test-and-build:
name: Run Unit Tests & Production Build
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Run Test Suite
run: npm test
- name: Build Production Assets
run: npm run build