Skip to content

Commit 8699835

Browse files
committed
修改README文件
1 parent d9622d4 commit 8699835

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
pull_request:
7+
branches: ["main"]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
- name: Setup Node
16+
uses: actions/setup-node@v4
17+
with:
18+
node-version: '18'
19+
cache: 'npm'
20+
- name: Install dependencies
21+
run: npm ci
22+
- name: Generate Astro types
23+
run: npx astro sync
24+
- name: Build
25+
run: npm run build

public/favicon/webshot.webp

-452 KB
Binary file not shown.

0 commit comments

Comments
 (0)