Skip to content

Feat: Add authentication methods #66

Feat: Add authentication methods

Feat: Add authentication methods #66

Workflow file for this run

name: UI CI
on:
pull_request:
branches: [main]
paths:
- 'ui/**'
- '.github/workflows/ui-ci.yml'
defaults:
run:
working-directory: ui
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "22"
cache: npm
cache-dependency-path: ui/package-lock.json
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Check formatting
run: npm run format:check
- name: Build
run: npm run build