Skip to content

feat(ui): implement Liquid Glass effect on bottom nav bar #7

feat(ui): implement Liquid Glass effect on bottom nav bar

feat(ui): implement Liquid Glass effect on bottom nav bar #7

Workflow file for this run

name: CI App
on:
pull_request:
branches:
- main
paths:
- ".github/workflows/ci-app.yml"
- "app/**"
push:
branches:
- main
paths:
- ".github/workflows/ci-app.yml"
- "app/**"
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ci-app-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
app:
name: app
runs-on: ubuntu-latest
timeout-minutes: 15
defaults:
run:
working-directory: app
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: npm
cache-dependency-path: app/package-lock.json
- name: Install dependencies
run: npm ci
- name: Check JavaScript syntax
run: npm run lint
- name: Run TypeScript compiler
run: npm run typecheck
- name: Build web bundle
run: npm run build:web