Skip to content

fixed design

fixed design #278

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
types: [opened, synchronize]
jobs:
build:
name: Build, Linting
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: check out code
uses: actions/checkout@v6
with:
fetch-depth: 2
- uses: pnpm/action-setup@v4
with:
version: 10.4.1
- name: setup node.js environment
uses: actions/setup-node@v6
with:
node-version: 24
cache: "pnpm"
- name: install dependencies
run: pnpm ci:install
- name: build
run: pnpm build
- name: formatting
run: pnpm check
# - name: test
# run: pnpm test