Skip to content

chore: 添加markdownlint配置 #36

chore: 添加markdownlint配置

chore: 添加markdownlint配置 #36

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
verify:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.25.x"
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: npm
cache-dependency-path: frontend/package-lock.json
- name: Setup Task
uses: arduino/setup-task@v2
- name: Install frontend dependencies
run: task frontend:install
- name: Run formatting checks
run: task fmt:check
- name: Run lint checks
run: task lint
- name: Run Go tests
run: task test
- name: Run Go vet
run: task vet
- name: Build backend and frontend
run: task build