forked from AlistGo/alist-web
-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (27 loc) · 724 Bytes
/
Copy pathformat.yml
File metadata and controls
35 lines (27 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Format
on:
push:
branches: [main]
jobs:
format:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: pnpm install
- name: Format
run: pnpm run format
- name: Add, Commit and Push
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "style: format code with prettier"
commit_user_name: Isla
commit_user_email: [email protected]
commit_author: "Isla <[email protected]>"