forked from solidjs-community/solid-primitives
-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (37 loc) · 1.03 KB
/
format.yml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Format and Update Readme
on:
push:
branches: [main]
jobs:
format-and-update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 18
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Setup prettier cache
uses: actions/cache@v4
with:
path: node_modules/.cache/prettier
key: prettier-${{ github.sha }}
restore-keys: |
prettier-
- name: Format
run: pnpm run format
- name: Add, Commit and Push
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Format"
- name: Update Readme
run: pnpm run update-readme
- name: Add, Commit and Push
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Update Readme"
file_pattern: README.md